Viewing 15 posts - 3,256 through 3,270 (of 6,679 total)
You might not even need to do that - depending on how long ago the changes were made and how much data is kept in the default trace.
You can run...
May 3, 2011 at 8:16 pm
Is this stored procedure called by different users? And, are all objects referenced in the stored procedure at least schema qualified?
This could be a case where the procedure is...
May 3, 2011 at 2:41 pm
Is SQL Server Agent running under the same service account? Was that account added separately to SQL Server and granted sysadmin, or are you relying on group membership?
Do you...
May 2, 2011 at 8:20 pm
I probably would have just set the format on the text box itself, instead of using an expression. The formula would be the same.
April 29, 2011 at 3:05 pm
The way you implement parameters will be slightly different, depending on where the code for the report sits. If the code is embedded in the report - then you...
April 29, 2011 at 2:59 pm
Geoff A (4/29/2011)
April 29, 2011 at 2:57 pm
QQ-485619 (4/29/2011)
Error 30002: Type 'DirectoryInfo' is not...
April 29, 2011 at 2:54 pm
You can add additional filtering to the statement after the cte. In your case, you need to identify the criteria that determines that you have reached the appropriate management...
April 29, 2011 at 2:51 pm
You can use a script task in SSIS and use something like the following:
' Microsoft SQL Server Integration Services Script Task
' Write scripts using Microsoft Visual Basic
' The ScriptMain class...
April 29, 2011 at 11:34 am
SQLMyFriend (4/26/2011)
"I would probably not do that - instead, I would use proxy accounts to grant the appropriate rights needed for each...
April 26, 2011 at 8:01 pm
TheSQLGuru (4/26/2011)
I actually think ApexSQL's Log product might be able to unwind or redo transactions given your scenario. Tell them TheSQLGuru sent you.
Just to be clear - if that...
April 26, 2011 at 2:24 pm
Review this article: http://www.sqlservercentral.com/articles/Advanced+Querying/calculatingworkdays/1660/
I would also recommend that you review the discussion that follows that article.
April 25, 2011 at 5:26 pm
This is usually an indication of a bad execution plan for the parameters being run from the application. Recompiling the procedure and then running with the same parameters generates...
April 22, 2011 at 3:36 pm
I prefer using ALTER DATABASE ... MODIFY FILE to move database files. This method preserves the database ownership and does not require a detach/attach of the database.
The first step...
April 22, 2011 at 10:08 am
It sounds like you may have hyper-threading enabled on those cores. If so, try disabling the hyper-threading and see if that helps performance.
The reason I say this is that...
April 22, 2011 at 10:01 am
Viewing 15 posts - 3,256 through 3,270 (of 6,679 total)