Viewing 15 posts - 1 through 15 (of 28 total)
Not exactly the same thing, but Jonathan Kehayias showed how to query the Plan Cache for queries that use a specific index:
It can be a good start..
July 27, 2015 at 1:13 am
You will get a better understanding of what this process waits on using sys.dm_os_waiting_tasks.
Is it showing another wait type there?
July 20, 2015 at 10:58 pm
Hi,
I had success working with READPAST in a queue table. The important things are to REALLY be careful with the types of locks held and, make sure there is no...
July 11, 2015 at 11:55 pm
Hi,
Please check on a test system, but I think it will be removed on the next SQL Server service restart.
July 7, 2015 at 12:41 am
Right click the job name and click Script Job As -> Create To -> New Query Window
In the created script, change the name of the job.
Then you'll be able to...
June 27, 2015 at 11:27 pm
Hi,
Transactional Replication will not help you in this case.
Transactional Replication will move the data from the primary to the secondary, but not the other way around if the primary fails.
You'll...
June 21, 2015 at 7:47 am
If you mean that you want the captured data to be retained for 6 months, you can use the sp_cdc_change_job procedure to configure it:
https://msdn.microsoft.com/en-us/library/bb510748.aspx
Keep in mind that it...
June 12, 2015 at 11:59 pm
CDC isn't supported in SQL Server Standard unfortunately:
https://msdn.microsoft.com/en-us/library/cc645993%28v=sql.110%29.aspx
You'll have to install SQL Server Enterprise edition in order to use it..
May 12, 2015 at 12:02 am
The generated snapshot will include only the replicated table.
However, the best way is to test it on a test system in order to be sure.
April 25, 2015 at 11:31 pm
When does this happen?
Is it in the initialization phase or after replication has already started transferring data?
April 25, 2015 at 11:29 pm
It depends on which cache you flush - the Plan Cahce, using DBCC FREEPROCCACHE, or the data cache using DBCC DROPCLEANBUFFERS.
You can check if most of the time goes on...
April 23, 2015 at 2:22 pm
You can use windows scheduler and run the backup using SQLCMD.
April 22, 2015 at 10:59 am
Viewing 15 posts - 1 through 15 (of 28 total)