Viewing 15 posts - 181 through 195 (of 455 total)
zedtec (11/13/2014)
I have run a trace but no slow queries found (all running under 5 seconds).
Checked CPU, memory, disks...
November 13, 2014 at 8:33 am
Script produces bugs:
Msg 15009, Level 16, State 1, Procedure sp_spaceused, Line 62
The object 't_DispCSV' does not exist in database 'EPCentral' or is invalid for this operation.
Even though script has only...
November 10, 2014 at 8:34 am
SSMS: Your_database/Right-mouse-click/Tasks/Generate scripts/Script entire database and all database objects
October 20, 2014 at 10:00 am
No, they describe these steps as if I already opened it. But my problem is that I even cannot find it.
October 16, 2014 at 8:52 am
Great script, I liked it. Even though it returns results only for queries that being executed at the current moment, it's good.
From Text field I can find out the text...
October 7, 2014 at 9:21 am
Thank you, that is great article, but it takes time to digest it and use it for my goal. I tried to use "EXECUTE AS" but it did not work....
October 5, 2014 at 6:32 pm
Check for SPARSE COLUMNS in B.O.L.
September 22, 2014 at 8:46 am
Thanks, Gianluca. I suspected this.
BTW, I liked your site.
September 18, 2014 at 8:05 am
1. What version of SQL Server do they have?
2. Do they have dev, test environment?
3. What version manager they use?
4. Besides SSIS, what other ETL tools they use?
5. Size of...
September 3, 2014 at 8:23 am
Yes you can do filegroup backup:
BACKUP DATABASE <your_db>
FILEGROUP = 'primary'
TO DISK = '...'
Alternatively, you can set secondary to read-only, and run this:
BACKUP DATABASE <your_db>
...
September 3, 2014 at 8:11 am
Run this:
exec xp_cmdshell 'dir \\your_server\your_share\ /S'
September 2, 2014 at 1:40 pm
Drop its subscription and article and re-run snapshot:
exec <your_db>.dbo.sp_dropsubscription
@publication = <publication_name>,
@article ...
September 2, 2014 at 1:36 pm
Yes it is possible when trigger is ON on the Publisher. But if it is ON on Subscriber, you will get an error 'Can't insert duplicate record in PK...'
September 2, 2014 at 12:03 pm
You can do this:
1. script out the index
2. Drop it.
3. Create from the script from (1).
In this case you don't need any new space.
September 2, 2014 at 11:47 am
Viewing 15 posts - 181 through 195 (of 455 total)