Viewing 15 posts - 2,206 through 2,220 (of 7,502 total)
Once again has been proven simple rocket science is what it takes to get lucky.
I extrapolated Pauls (sql_kiwi) "Constructing a Plan series", Gails Indexing articles, Jeffs Anty RBAR laws and...
March 21, 2011 at 12:14 pm
Ninja's_RGR'us (3/21/2011)
testing something.
Most of the times that is a good thing ;-):w00t:
March 21, 2011 at 7:21 am
also keep in mind MSDTC needs some authentication settings shut off when connecting from or to Windows 2000 !
March 21, 2011 at 4:16 am
same player shoot again, hit ball when lights are on 😉
I would doublecheck the msdtc settings and stop/start it once more.
March 21, 2011 at 4:03 am
You would have to post the scripts for us to be able to interpret the reason of your syntax error.
You cannot truncate tableA if tableB references it (via FK) (or...
March 20, 2011 at 2:31 pm
GilaMonster (3/19/2011)
ALZDBA (3/19/2011)
Whats the length of "varchar" ? by default 15 !1 in a declare, 30 in a cast.
Thank you for correcting that.
Of course the message should have been "never...
March 20, 2011 at 7:03 am
Attaf_T (3/20/2011)
In this table there are column (Cost float)
I Update this table
Update Materials Set Cost = 0.37421
NOW:
When i read data i have this data:...
March 20, 2011 at 2:48 am
Coldcoffee popped up the correct question.
Keep in mind when you put things into a variable to be executed, you should double the quotes !
Schedule your backup job(steps) in a sqlagent...
March 19, 2011 at 2:26 pm
henryvuong1000 (3/19/2011)
March 19, 2011 at 2:13 pm
GilaMonster (3/18/2011)
ALZDBA (3/18/2011)
Anyone in for SQL2005 mirroring and replication ?http://www.sqlservercentral.com/Forums/Topic1080627-291-1.aspx
( I don't have the combination )
No, but I suspect it has to do with log growth. Since the mirror's down,...
March 18, 2011 at 3:46 pm
You can use truncate with any table that ins't being referenced by a dependent table.
However, you dan use "delete from ...", but that may generate a load of log entries.
To...
March 18, 2011 at 3:44 pm
Anyone in for SQL2005 mirroring and replication ?
http://www.sqlservercentral.com/Forums/Topic1080627-291-1.aspx
( I don't have the combination )
March 18, 2011 at 12:48 pm
it complains because the table is being refered to by another table.
Drop the FK constraint on the refering table and you'll be ok.
Keep in mind to add the FK after...
March 18, 2011 at 12:22 pm
you should use the DMVs to get the most reliable results.
sysprocesses itself is a backward compatibility view. It has more statuses documented in BOL than sys.dm_exec_requests.
sys.dm_exec_sessions also has a...
March 18, 2011 at 11:31 am
Remark from BOL (2-nd ref)
This SQL Server 2000 system table is included as a view for backward compatibility. We recommend that you use the current SQL Server system views...
March 18, 2011 at 8:07 am
Viewing 15 posts - 2,206 through 2,220 (of 7,502 total)