Viewing 15 posts - 3,331 through 3,345 (of 7,498 total)
Currently SQL2005 is on SP3 for a while now ! You should evaluate it and upgrade if you can !
The logon trigger (available with sp2) is only validated...
November 5, 2009 at 7:35 am
Tara-1044200 (11/4/2009)
example:2TB of databases containing 20 yrs...
November 4, 2009 at 2:39 pm
If you have SQL2005 SP2 or higher have a look at http://www.simple-talk.com/sql/sql-server-2005/logon-triggers/
November 4, 2009 at 2:19 pm
- please post in the correct forum ! ( this is a sql2005 forum )
- the lack of SQLAgent manager role is one of the weak spots of SQL2000 ...
November 4, 2009 at 12:56 pm
HTH
Keep in mind that if you are using sqlauthentication and didn't migrate the sqluserid including the SID, you must resync the user ids using:
-- to be executed per sqluserid !
exec...
November 3, 2009 at 1:45 am
What issue did you encounter to validate the need to uninstall the sp ?
November 1, 2009 at 4:25 am
Robert Frasca (10/30/2009)
October 31, 2009 at 3:29 pm
I posted my SQL2005 script, because you posted in the SQL2005 forum !
for sql2000 you can use:
SET NOCOUNT ON
SET ROWCOUNT 1000
WHILE 1 = 1
BEGIN
DELETE TableName WHERE <Your Condition Here>
...
October 30, 2009 at 6:33 am
Anamika (10/30/2009)
thanks,but to take a back up i don't have space in the server. it'z a 200gb database.
regards,
anamika
You can also produce the backup to a remote location, provided you grant...
October 30, 2009 at 4:44 am
That's an eye opener indeed !
In many cases we only see the beauty of life, once we have to mis part of it.
For Belgium these links may get donation started:
Flemish...
October 30, 2009 at 4:34 am
If both sqlservers can "see" eachother and the destination service account has read auth on the source servers backup folder, you can restore using the source server bak files
restore database...
October 30, 2009 at 4:24 am
This is one way to work with batches:
If you don't switch to simple recovery, you log files may get filled up and even grow !
If you switch to simple recovery,...
October 30, 2009 at 4:10 am
or maybe someone just dropped the database that had been set for default database of the service account.
Solution:
ALTER LOGIN [ictlan\MSSQLSERVICE] WITH DEFAULT_DATABASE=[master]
October 30, 2009 at 1:27 am
Thank you both for clarifying how to change that behaviour at windows level;
I hadn't been looking in that direction, because in many cases, when you encounter this behaviour, it points...
October 30, 2009 at 1:22 am
Viewing 15 posts - 3,331 through 3,345 (of 7,498 total)