Viewing 15 posts - 691 through 705 (of 1,415 total)
Sean Lange (11/11/2016)
Update table
set Col1 = SomeValue
where MyKeys = Mykeys
if (@@ROWCOUNT = 0)
Insert table
(Cols)
Values
(Vals)
November 16, 2016 at 2:32 pm
also check networking:
microsoft ldap port 389
I run into this sort of networking often, with today's vlans and other segmented mess, any given route in your organization can block a port,...
November 11, 2016 at 12:23 pm
any differences in the sql server's service account itself? just curious, I've only used the ldap queries a few times and they worked from the get go but was curious...
November 10, 2016 at 12:44 pm
if you transfer table by table, how are you going to be assured of a consistent view of the entire database? Are you going to leave the source table inactive...
November 7, 2016 at 1:00 pm
sqlfriends (11/7/2016)
In which case we should create functions?
I can think of is for calculation, parse,...
November 7, 2016 at 12:17 pm
CELKO (10/26/2016)
UPDATE Foobar -- we have no DDL or...
October 27, 2016 at 12:02 pm
this wasn't exactly my favorite editorial of all time.
October 25, 2016 at 8:34 am
I notice that you bump up system load to find concurrency problems, another method is to introduce "waitfor" statements in your stored procedures in between updating separate parts of your...
October 21, 2016 at 1:17 pm
latitiacasta (10/20/2016)
October 21, 2016 at 10:59 am
I just am having trouble how to reorganize a table that size and get away with just 24 gigs of tlog activity.
When I look at the table and count the...
October 21, 2016 at 7:22 am
Brandie Tarvin (10/20/2016)
Jeff Moden (10/19/2016)
Steve Jones - SSC Editor (10/19/2016)
Jeff Moden (10/18/2016)
October 20, 2016 at 2:13 pm
"clustered index" means the base table, so you are essentially rebuilding or reorging the base table.
October 20, 2016 at 8:09 am
Brandie Tarvin (10/19/2016)
patrickmcginnis59 10839 (10/19/2016)
Anything could cause the secondary to not be synchronized. Things like taking differential database backups of the primary, which will disrupt the flow of data from...
October 19, 2016 at 8:52 am
Anything could cause the secondary to not be synchronized. Things like taking differential database backups of the primary, which will disrupt the flow of data from primary to secondary. (AG,...
October 19, 2016 at 7:40 am
Viewing 15 posts - 691 through 705 (of 1,415 total)