Viewing 15 posts - 106 through 120 (of 541 total)
SP1 for SQL Server 2014 has been pulled back and delayed.
May 15, 2015 at 9:03 am
alexmpd (5/13/2015)
It returns nothing
Good. Are you on Service Pack 1?
May 13, 2015 at 9:50 am
This is from https://technet.microsoft.com/en-us/library/ms151718%28v=sql.105%29.aspx
User-Defined Triggers
If the application requires triggers at the Subscriber, the triggers should be defined with the NOT FOR REPLICATION option at the Publisher...
May 13, 2015 at 8:39 am
Run this and see if it returns anything:
SELECT * FROM sys.dm_exec_requests where command like '% LOG%' or command like '% CHECKPOINT%' or wait_type like '% LOG%'
May 13, 2015 at 8:13 am
Jeffery Williams (3/19/2015)
Ok pretty new to encryption. Did it once YEARS ago. The following is...
March 19, 2015 at 7:24 am
Yes you can restore and reinitialize but I'm not sure if you need to add a new server as a subscriber first.
March 4, 2015 at 2:31 pm
NO. compatibility level controls the features not database internals.
March 4, 2015 at 1:29 pm
Job saving tip:
Never ever allow 3rd party (even if it's Microsoft System Center 2012) handle backups.
But 🙂 it depends on your situation.
March 3, 2015 at 2:30 pm
You used wildcard %430% in like so why not use in contains WHERE CONTAINS(CustomerID, '"*' 430 '*"')
February 27, 2015 at 12:20 pm
You just mentioned replicate so by setting up replication you can accomplish it.
For Always On to work you must have Enterprise Edition installed in every site.
Here is some reading material...
February 19, 2015 at 1:58 pm
Because you're telling the server to only create the table IF NOT EXISTS.
IF NOT EXISTS is a conditional operation actually your code is 2 conditional expressions and a transaction in...
February 5, 2015 at 10:34 am
You can't use case statement in merge the way you described.
November 25, 2014 at 11:32 am
I don't think you need case in merge
Just like in the join you can add additional conditions and you can have multiple WHEN (NOT) MATCHED conditions
WHEN MATCHED AND (src1.col1=NULL AND...
November 25, 2014 at 10:31 am
Kenneth and Gail Thank you very much 🙂
is_cdc_enabled was 0 but the log_reuse_wait_desc = REPLICATION.
I followed Gail's steps and was able to resolve it.
November 24, 2014 at 9:21 am
Just use PRINT or SELECT that @ variable which contains the dynamic sql and comment out the
e.g.
--Exec @sql
--execute @ variable
November 19, 2014 at 12:53 pm
Viewing 15 posts - 106 through 120 (of 541 total)