Viewing 15 posts - 1 through 15 (of 22 total)
If you're using SQL 2005+ you can also setup an Event Notification for all the Audit_Login events. I'm implementing this now. It's easier to off load the service broker queue...
May 12, 2010 at 8:58 pm
I found this for you, though not sure if it will work. Here's a link to the thread in case you want to see the whole discussion http://www.symantec.com/connect/forums/security-update-sql-server-2005-service-pack-3-kb970892-fails-install.
Microsoft's...
November 24, 2009 at 5:28 am
Through the GUI (i.e. SSMS, Enterprise Manager)...
2005 - Linked Servers are listed under Server Objects within Object Explorer
2000 - Linked Servers listed under Security
January 23, 2009 at 6:08 pm
So, late in the day, I received the 12th email to this saga. We were instructed to notify the users as a courtesy. That's like emailing the users when I...
January 23, 2009 at 6:02 pm
A simple way to set "Output to Text" is by pressing ctrl+t and ctrl+d sets the query results pane back to grid.
January 23, 2009 at 5:45 pm
By default, I believe results to text only outputs the first 255 characters or so. Go to Tools >> Options, Expand Query Results, Expand SQL Server, and Highlight Results to...
January 23, 2009 at 5:42 pm
The OSQL command will be depricated in a future release. You should use the sqlcmd utility, which has the -o option allowing output to a file. As stated before, SSIS...
November 25, 2008 at 1:42 pm
The code is right. The problem is a permissions issue on the directory you're trying to write the backup to. I believe SQL Server Service account will need write permissions...
November 25, 2008 at 6:05 am
It could be a permissions issue on the procedure since you renamed it. Have you granted the appropriate user\group execute permissions? That's the only other thing I know to check.
November 24, 2008 at 12:30 pm
Have you tried verifying the database or checking the Database settings from within Crystal? Go to the Database menu to check all the settings and field mappings.
November 24, 2008 at 11:52 am
There are a ton of SQL 2005 books ranging across many topics. The Inside series are some of the best. Are you looking for info on the new features in...
November 24, 2008 at 11:13 am
You can also use the RESTORE FILELISTONLY command to see what databases exist in the .bak backup file.
Example:
RESTORE FILELISTONLY
FROM DISK = 'enter file path with filename'
November 24, 2008 at 10:03 am
According to BOL, they recommend now using the dtexec command prompt utility (ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/sqlcmpt9/html/89edab2d-fb38-4e86-a61e-38621a214154.htm)
This is utility appears to have many options for executing and logging SSIS packages, which are precisely what...
November 24, 2008 at 9:59 am
Maybe the test DB is set to Simple recovery and production is set to Full. I doubt this would cause a 10.75 hour difference in execution though. It sounds like...
May 15, 2008 at 4:23 am
"A full database backup backs up the whole database. This includes part of the transaction log so that the full database backup can be recovered. Full database backups represent the...
May 14, 2008 at 10:22 pm
Viewing 15 posts - 1 through 15 (of 22 total)