Viewing 15 posts - 5,056 through 5,070 (of 7,505 total)
If you are on SP2, you can use login triggers.
They only fire at login time.
If a user switches db in his current connection, you may not see it.
Check bol
March 21, 2008 at 5:28 am
char is a fixed length datatype that takes all the length as defined in the clause, no matter if you actualy fill it up or not, so that would not...
March 21, 2008 at 12:58 am
Using the scripts is the "shortest" way.
You could also restore the database with a new name and then
delete all datacontent using truncate table or delete from table.
(watch out for...
March 19, 2008 at 2:42 pm
you would have been able to keep the existing identity values by using
set identity_insert yourtable on
perform your inserts
set identity_insert yourtable off
This way you would have been able to...
March 19, 2008 at 2:40 pm
make sure your sqlagent / sqlserver service account is able (authorized) to access/write to those volumes.
If these drives are mapped drives, use UNC in stead !
March 19, 2008 at 12:04 pm
- IMO the "execute as .." is the preferable path.
If that cannot be done, maybe the (log)overhead of a simple delete from tablexyz will just do to avoid...
March 19, 2008 at 12:02 pm
SQL ORACLE explained what it did.
If you alter columns like that you should keep in mind if you are changeing the space needed to store the data.
- char(x) space needed...
March 19, 2008 at 11:56 am
just my 2ct (without seeing the actual sql you submit or the actual errormessage )
Does the sqlserver service account have auth to write to the folder/file you have supplied...
March 19, 2008 at 11:45 am
the checksum has no relation with previous backups, it only validates the current backup.
You can see a backup contains checksum info by using RESTORE HEADERONLY .
March 18, 2008 at 8:31 am
We prefer having single collation server instances !
The impact a instance level is a reinstall in our case.
Mixed collation databases may cause tempdb to have some hickups because
of collation conflicts
e.g....
March 17, 2008 at 2:58 pm
- did you follow the KB for moving systemdatabases around ?
- can you doublecheck the sqlserver service startup parameters ?
March 17, 2008 at 2:49 pm
and don't forget to capture CLR-stuff 😉
March 17, 2008 at 1:20 pm
If you're trying to figure out wich objects are used by your proc,
check out your xml-plan !
you could off course equipt your sproc so it returen the objectid for...
March 17, 2008 at 1:17 pm
No, these settings are active after stop/start of sqlserver.
they report failed logins in the sql errorlog file;
You can read it directly or import it using exec sys.sp_readerrorlog
Because that proc needs...
March 17, 2008 at 9:08 am
checksum is not an option in a maintenance plan gui (not manual, not with the wizard).
However you can check "verify backup integrity".
March 17, 2008 at 6:28 am
Viewing 15 posts - 5,056 through 5,070 (of 7,505 total)