Viewing 15 posts - 241 through 255 (of 1,584 total)
Prior to SQL 2012, the shrinkfile operation is single-threaded and is kept to a single CPU, you can't do much to speed it up other than ensure you are running...
April 1, 2014 at 9:31 am
Let's rule out a security/permissions issue. On the DEV box, create the linked server using the script below, specifying either domain account that has appropriate access on both servers,...
April 1, 2014 at 8:24 am
For what its worth I've always encountered similar issues with replication alerts not firing, unless I manually scripted it out in TSQL, setting the "@shouldalert = 1"
When done via the...
April 1, 2014 at 7:58 am
You could handle this two ways: 1) Create a trigger AFTER UPDATE to update the record as needed, or 2) Handle the change via your VB.Net code.
I'd probably opt for...
April 1, 2014 at 7:49 am
Sounds like a permissions issue between the service account from DEV to PROD - are they the same?
Can you post your scripts for both the DEV and PROD server?
April 1, 2014 at 7:34 am
All great points mentioned, so I'll contribute one last item: If you use multiple data files for TempDB, autogrowth should be avoided. As others have mentioned, it's best to...
April 1, 2014 at 7:32 am
If you were performing index maintenance it could be briefly possible, or if you were running a query within a transaction, it would have blocked any other user/process accessing your...
March 31, 2014 at 2:37 pm
Idera SQL Diagnostic Manager also offers this - http://www.idera.com/productssolutions/sqlserver/sqldiagnosticmanager
(sorry Red Gate guys)
March 31, 2014 at 9:33 am
Fair point 🙂
For ease of use, I'd go with BCP. Which would you recommend?
March 28, 2014 at 1:06 am
If the source data isn't too "wide", BCP would work quite well, but I'd recommend using SSIS so you can take more advantage of simultaneous/parallel threads
Take a quick look through...
March 27, 2014 at 9:28 pm
Of course, I was just matching the required output that the OP requested. This would need to be removed for a full result set. I liked your approach,...
March 27, 2014 at 1:11 pm
Perhaps something like this?; WITH VisitTypes AS (
SELECT PatientID, VisitType, ROW_NUMBER() OVER ( PARTITION BY PatientID, VisitType ORDER BY VisitDate) AS Cnt, VisitDate
FROM #visit_info_table
) SELECT TOP 2...
March 27, 2014 at 12:58 pm
I believe Gail is referring to SQL Server-related types, for example (PAGELATCH_EX, ASYNC_NETWORK_IO, CXPACKET, and so forth).
Okay, RAID-10. To push a little further - how many spindles are making...
March 27, 2014 at 10:30 am
Both old and new server used some type of RAID configuration. The network guy said the RAID on the new server should be more efficient. The new server...
March 27, 2014 at 12:14 am
Viewing 15 posts - 241 through 255 (of 1,584 total)