Viewing 15 posts - 15,391 through 15,405 (of 26,486 total)
How about providing the DDL (CREATE TABLE statements) for the table(s) involved (including the constraints applied), sample data you are trying to insert (series of INSERT INTO statements) for the...
June 10, 2010 at 1:14 pm
2Tall (6/10/2010)
Users...
June 10, 2010 at 12:42 pm
Starting with SQL Server 2005 SP 1, database mirroring is available without enabling any trace flags.
June 10, 2010 at 12:37 pm
Steven James Gray (6/6/2010)
Lynn Pettis (6/6/2010)
Unfortunately, you are using the same logic everyone else uses to defend the use of inefficient code, "It works for my case." Problem is,...
June 6, 2010 at 4:56 pm
Steve,
Unfortunately, you are using the same logic everyone else uses to defend the use of inefficient code, "It works for my case." Problem is, it is still inefficient. ...
June 6, 2010 at 3:42 pm
Amazing how some people will continue to defend their code even when shown it is inefficient.
June 6, 2010 at 2:06 pm
Special note, I found no real appreciable difference between the following:
select * into #Test2 from dbo.fn_GetTimestampRangeRCTE ('2006-01-01','2006-02-01', 0) OPTION (MAXRECURSION 0);
select * into #Test2 from dbo.fn_GetTimestampRangeRCTE ('2006-01-01','2006-02-01', 0) OPTION (MAXRECURSION...
June 6, 2010 at 1:04 pm
Steven James Gray (6/6/2010)
June 6, 2010 at 12:55 pm
Unless you have already established auditing processes to capture these types of changes, you may not be able to determine the who and when this occurred.
You may want to start...
June 5, 2010 at 11:22 am
Jeff Moden (6/4/2010)
If it's for a SELECT to return a result set to...
June 4, 2010 at 8:13 pm
This:
select
d.col1,
d.col2,
e.col4,
e.col5
from
dbo.table1 d, dbo.table2 e
where
d.col1 = e.col1
is...
June 4, 2010 at 1:20 pm
I'm assuming that this meant dropping both the partner and witness servers from the principal database, correct?
June 4, 2010 at 12:50 pm
Lynn Pettis (6/4/2010)
Trolling for assistance from the denizens of The Thread.Any guidance, insights, thoughts are greatly appreciated.
Never mind (at least for now) as the problem with the server turned out...
June 4, 2010 at 11:38 am
timmynew11 (6/4/2010)
June 4, 2010 at 11:37 am
Disaster alleviated. Turns out some memory went south. SysAdm replaced all the RAM in the server (resulted in an upgrade from 20GB to 24GB) and it is up...
June 4, 2010 at 11:30 am
Viewing 15 posts - 15,391 through 15,405 (of 26,486 total)