Viewing 15 posts - 541 through 555 (of 1,158 total)
It's more useful to understand how SQL stored replication information. This is what I would use.
select *
from syssubscriptions ss with(nolock)
inner join sysarticles sa with(nolock) on sa.artid = ss.artid
inner join...
February 22, 2012 at 11:40 am
Do the restored databases have to be read write?
What about customer sensitive data? Do you need to remove details which could identify customers? Card numbers?
February 22, 2012 at 11:34 am
Lynn Pettis (2/22/2012)
Jeremy... (2/22/2012)
MysteryJimbo (2/22/2012)
February 22, 2012 at 11:32 am
I dont mean to be pedantic but for accuracy I'd want to see this query as a between and in a stored procedure with default values so it can be...
February 22, 2012 at 10:17 am
Im also a little confused. Does the table have a primary key or unique column that we cannot see?
Are you trying to iteratively move down the "list" and if...
February 22, 2012 at 10:14 am
If there are concerns over concurrency and there's no reason transactionally to update the rows as a single batch I would look at writing a simple loop to update the...
February 22, 2012 at 10:09 am
Sapen (2/21/2012)
February 21, 2012 at 2:51 pm
rajiv.varma (2/21/2012)
(DT_STR, 4, 1252)DATEPART("yyyy", @[System::ContainerStartTime]) +
RIGHT("0" + (DT_STR, 2, 1252)DATEPART("mm", @[System::ContainerStartTime]), 2) +
RIGHT("0" + (DT_STR, 2,...
February 21, 2012 at 2:41 pm
I'm not going to be able to do this for you. I can point you in the right direction of information where you can help yourself.
This article covers a...
February 21, 2012 at 2:31 pm
Is there the possiblity of multiple files? If so you can use a for each loop container which will automatically populate a variable with its current filename.
If its a...
February 21, 2012 at 1:51 pm
My general list consists primarily of logshipping the big databases, creating logins (with server roles assigned), linked servers and jobs in advance of migration.
February 20, 2012 at 1:28 pm
Method 2 should still apply.
February 20, 2012 at 10:16 am
I'm not 100% I understand this.
NirvanASQL (2/10/2012)
February 10, 2012 at 8:57 am
Nicholas Cain (2/10/2012)
Can you provide the full DDL for the two tables?
and trigger
February 10, 2012 at 8:52 am
Koen Verbeeck (2/10/2012)
Package configurations are created for just this purpose:
Package configs a bit too finicky for my liking and distribute the information into another location. ...
February 10, 2012 at 8:49 am
Viewing 15 posts - 541 through 555 (of 1,158 total)