Viewing 15 posts - 5,641 through 5,655 (of 7,502 total)
there are forum threads regarding this issue ... I cannot recall them ![]()
But this spc may get you on track.
examine it and Test it...
August 31, 2007 at 4:47 am
With sql2005 (sp2) you could use login serverlevel triggers. ![]()
With sql2000 i guess you're stuck to launching an "audit" job every x minutes which...
August 30, 2007 at 11:56 am
- g8r65 provided the way to connect it.
- In case you want to migrate from oracle to sqlserver
August 30, 2007 at 11:52 am
there is also the matter of :
... AND A.teller_id not in (SELECT teller_id
August 30, 2007 at 8:15 am
- keep in mind sp_change_users_login should be executed with a connection to the troubled database !!
- if it returns no rows, all users are mapped ! So the
- if...
August 30, 2007 at 1:17 am
maybe this solution is also worth comparing to the other plans and execution times ![]()
SELECT
-- distinct is not...
August 30, 2007 at 1:06 am
Like Antares686 said, profiler is mostly used for troubleshooting, so you only add the overhead for a controled period of time. In this...
August 29, 2007 at 11:48 pm
- exec sp_helpsrvrolemember @srvrolename = 'sysadmin'
(Is builtin\administrators not removed ?)
- use your_troubled_db
EXEC master..xp_logininfo @acctname = 'youruser',@option = 'all'
August 29, 2007 at 5:33 am
- keep your profiler running ! so you can see growth is stopped.
- contact your coworker again to monitor his application in detail (profiler) and ask her/him if something has...
August 28, 2007 at 11:47 pm
- start a sqlprofiler trace to find out what's going on !
- to shrink tempdb, you'll have to stop/start sqlserver. It will cleanup the db and start with the original...
August 28, 2007 at 11:03 am
9.00.3186 Cumulative update package 3 for SQL Server 2005 Service Pack 2
http://support.microsoft.com/default.aspx/kb/939537 released 2007-08-20
August 28, 2007 at 2:31 am
And it's a place where (by default) there exist no stupid questions. ![]()
(exceptions may occur
)
You can...
August 24, 2007 at 12:13 am
- which OS are you using ? W2003, XP, ... ?
- did you have a look at :
- http://support.microsoft.com/kb/925001 ?
- http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=110&messageid=246883
August 20, 2007 at 11:56 pm
If you want to trace in batch, you need to trace to a file !
Afterward you can load the file to a given (empty) table using :
-- HOW TO: Programmatically...
August 20, 2007 at 7:57 am
with simple recovery, a transcation is marked to be overwritable (in the transaction log file) once it is committed or rolled back.
You need to make log-backups to keep your transaction logs from...
August 20, 2007 at 4:51 am
Viewing 15 posts - 5,641 through 5,655 (of 7,502 total)