SQL Server跨服务器访问实例
SQL Server 跨服务器访问实例功能非常好用,访问其他服务器可以像访问同一个数据库一样便捷。 SQL跨服务器访问设置: EXEC master.dbo.sp_addlinkedserver@server = N'TEST74', --被访问的服务器别名@srvproduct = N' ',@provider = N'SQLNCLI',@datasrc = N'10.191.3.74';...
View Article#0395 SQL Server SSIS Adding date and time to a file name after process ...
As we have been discussing over the last couple of weeks, moving data from a “source” to a “destination” is the crux of SSIS. The data source can be literally anything a SQL Server database, a...
View ArticleMicrosoft releases the latest update to Analytics Platform System
Microsoft is pleased to announce that the appliance update, Analytics Platform System (APS) 2016, has been released to manufacturing and is now generally available. APS is Microsoft’s scale-out...
View ArticleSQL SERVER Error Disallowing page allocations for database ‘DB’ due to i ...
Keeping SQL Server up-to-date is something I recommend my customers from time to time. One of the tasks I undertake is to check the current SQL Server version information as soon as I get started to...
View ArticleWhat's New for SQL Server Reporting Services 2016 QandA
By:Koen Verbeeck || Related Tips: > Reporting Services Development Problem We hosted a webcast with the subject What's New for Reporting Services 2016 on October 26th 2016. There were a couple of...
View ArticleUse Sqoop to Append SQL Server Data to an Existing HDFS File
Problem I already have data imported from a SQL Server table to a file on the Hadoop Distributed File System. How can I use Sqoop to append new records in SQL Server to the existing HDFS file? Solution...
View ArticleSQL Server 2016: Parallel Processing for R Server with MPI Part 2
Part 2: Parallel Processing with Microsoft R Server and MPI InPart 1we saw how to configure a server with Microsoft R Server to make use of the Rmpi library to achieve parallel processing. In Part 2,...
View ArticleWhat Sessions I’m Attending at AWS re:Invent This Week
A good number of our customers run SQL Server onAmazon Web Services We use AWS ourselves (our first project, PasteThePlan ,was built on AWS because we wanted to keep costs low ) Clients and friends...
View ArticleVMware vSphere 6.5 breaks your SQL Server vNUMA settings
VMware’s latest release of the vSphere virtualization suite, version 6.5 , changes how they handle vNUMA presentation to a virtual machine, and there’s a high likelihood that it will break your...
View ArticleSQL Server Backup and Restore Reports
SQL Server Backup and Restore Reports This post can help you to quickly find SQL Server Backup and Restore Reports from a given SQL Server instance. For a typical DBA a most common task is to check the...
View ArticleFinally, Create or Alter
There are lots of reasons to upgrade to SQL Server 2016, but this is the one for me. We finally get a CREATE OR ALTER statement in T-SQL. This not only makes lots of code easier to write, it means...
View ArticleSQL SERVER How to Find the In-Memory OLTP Tables Memory Usage on the Server
When I presented at the SQLPASS this year there were several learning that I found it interesting. Every year, this presentation preparation is something I take it seriously. I know many them turn up...
View ArticleFormatting SQL Server Reporting Services Reports that have large text values
By:Rahul Mehta || Related Tips: > Reporting Services Formatting Problem In SQL Server Reporting Services (SSRS), a report sometimes has large text columns that can distort the overall view of the...
View ArticleSQL Server 2016: The New @OneResultSet Parameter in SP_SpaceUsed
I came across something today that I have been looking forward to for a long time. In my shop a few instances do have a significant number of database running on them, and I have managed to develop a...
View ArticleSQL Server & Containers Part Three
This post follows on fromPart Two in which we created a custom docker image. We’ll now look at pushing that custom image up to the Docker repository. Let’s quickly check that we have our custom image,...
View ArticleSpills SQL Server Doesn’t Warn You About
Don’t make me spill Table variables get a lot of bad press, and they deserve it. They are to query performance what the TSA is to air travel. No one’s sure what they’re doing, but they’ve been taking...
View ArticleSQL SERVER Log Shipping Copy Job Failure The Password for This Account Has ...
Working as freelancer gives an opportunity to see various kinds of error and having fun to fix them. Recently, one of my blog readers sent an email and asked assistance on the log shipping issue. He...
View ArticleSQL Server Playing With Trace Flags
Trace flags are used to temporarily set specific server characteristics or to switch off a particular behavior. They are usually scoped to a global level or a session only level. For this blog post I...
View ArticleConfigure One Way Merge Replication for SQL Server
Problem We are using SQL Server Merge replication and we have a need to setup a one way publication. We needed Data Manipulation Language (DML) changes on the publisher to get replicated to one of the...
View ArticleHandling Special Dates For SQL Server Metrics
Problem We've noticed that holidays and weekends impact our collection of metrics across our systems. Should we track these, or are there easy ways we filter these out? Solution Holidays, weekends and...
View Article