Viewing 15 posts - 1,561 through 1,575 (of 3,011 total)
GSquared (10/23/2009)
MVJ: That's already been suggested. That's what the report pulls its data from.
I suggested this because you can find info in the trace that the report does not...
October 23, 2009 at 9:00 am
Object changes are captured by the default trace, so you should be able to find the information there.
http://www.sqlservercentral.com/articles/SQL+Server+2005/64547/
October 23, 2009 at 8:28 am
This script will truncate tables that are not referenced and delete the data from tables with foreign key references and then reseed the identity columns.
Truncate All Tables
October 22, 2009 at 12:15 pm
You should forget about using NOLOCK.
With SQL Server 2005, set the database to read_committed_snapshot, and your queries will not take locks or be blocked in most situations.
You should read about...
October 22, 2009 at 10:10 am
anand.ramanan (10/21/2009)
After setting a db to offline it wont be available for a restore...
That is not true. You can restore over a database when it is offline.
October 22, 2009 at 9:21 am
Setting the database to single user do not prevent someone from making a connection. It just kills the current connections, and prevent users from making more than one new...
October 21, 2009 at 4:03 pm
repent_kog_is_near (10/20/2009)
Just thought about it.. we may have to throw in or remove some indexes into the reporting DB.. that essentially rules out the DB Snapshot/Mirror and Shared Database, doesn't...
October 20, 2009 at 3:42 pm
emily-1119612 (10/19/2009)
...
The problem is the size of the folder and the available bandwidth, i.e., the data is too big and the pipe too small.
Any suggestions? I imagine some of...
October 20, 2009 at 2:13 pm
The value returned by the DATENAME function is dependant on the language setting of the connection; the DATEDIFF method is independent of language.
October 20, 2009 at 8:38 am
homebrew01 (10/20/2009)
October 20, 2009 at 8:01 am
Why did you start a new topic for the same problem?
http://www.sqlservercentral.com/Forums/Topic804719-149-1.aspx
You seem to have ignored the most important point from the prior thread, which was to limit the number of...
October 19, 2009 at 8:14 pm
Don't encrypt the password. Store is as a hash.
October 19, 2009 at 12:41 pm
I'm not sure what you mean by simplify, but here are two functions that you can use with each other to do the search you want. At the very...
October 19, 2009 at 12:07 pm
Dave Ballantyne (10/19/2009)
October 19, 2009 at 10:12 am
bigmikeg (10/16/2009)
The destination column in my system is a datetime. For the select part of my clause I'm using:
case ACTION
when isdate(ACTION)...
October 16, 2009 at 3:42 pm
Viewing 15 posts - 1,561 through 1,575 (of 3,011 total)