Viewing 15 posts - 2,206 through 2,220 (of 7,498 total)
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
Great to hear your issue has been solved.
Looking forward to the blog post.
Johan
March 18, 2011 at 7:21 am
CirquedeSQLeil (3/17/2011)
...Fetchez la vache!!
Please no cursors in The Thread :hehe:
March 17, 2011 at 1:21 pm
I've seen that too.
That's why I script all my restores and alter the names myself.
You can also do that in the GUI.
March 16, 2011 at 9:12 am
Viewing 15 posts - 2,206 through 2,220 (of 7,498 total)