Viewing 15 posts - 1,156 through 1,170 (of 1,247 total)
Did you change this stored procedure after applying SP4? If so, it is not surprising.
Did you have a lot of changes in your data after applying SP4? If so, did...
November 10, 2006 at 10:39 am
I cannot see any syntax error in your code. What I suspect is that the UM_DIV column does not exist.
Here is a code snippet. I tested and worked.
CREATE TABLE #1...
November 10, 2006 at 10:28 am
Use the CHAR function. I think it is CHAR(9). Please check it.
November 9, 2006 at 2:30 pm
I believe the original question is the effect of two instances on the same server. It is a good idea to limit the number of connections to the dev instance....
November 9, 2006 at 2:26 pm
It depends on how you set your audit. You can use the SQL Server Profiler to trrace any change of accounts.
November 9, 2006 at 2:21 pm
It seems no one knows. See my post, "How to get all accounts with sa privilege?" One way to get the same results may be to use text output rather...
November 9, 2006 at 2:20 pm
How about use the filter in the SQL Profiler?
November 9, 2006 at 2:15 pm
Based on my experiences, the service pack and hot fix may affect your recovery, in particular, when you recover a system database.
November 9, 2006 at 10:46 am
Colin:
Could you kindly describe it in more detail?
Many thanks in advance.
November 9, 2006 at 8:07 am
You can use an UPDATE trigger, and send the update event to your SQL errorlog.
November 9, 2006 at 7:59 am
It is an interesting question. Rows are not treated as objects in SQL Server. I really doubt we can find the number of connections to a row. Please correct me...
November 8, 2006 at 9:11 pm
You can also use:
DBCC SHRINKFILE (<FileName>, <TargetSize>
November 8, 2006 at 9:05 pm
It likely happened after you modified your account.
Some links may be helpful.
http://dbforums.com/archive/index.php/t-353973.html
http://support.microsoft.com/default.aspx?scid=kb;en-us;277549
November 8, 2006 at 8:54 pm
Right-click your database;
Choose Shrink Database ...from All Tasks;
Click Files ...
Choose ..._Log from the Database file dropdown box;
Choose Shrink file to;
Give a desired value;
Click OK;
November 8, 2006 at 12:59 pm
Viewing 15 posts - 1,156 through 1,170 (of 1,247 total)