Viewing 15 posts - 31 through 45 (of 190 total)
Try this script. Remember to set the context to the database you are interested in before running the script.
/* ================================================================================================================================ */
/* = ...
December 12, 2012 at 10:04 am
I found this software back in the summer. Has a 15 day free trial. I installed it for testing and it was nice. You can see if...
December 7, 2012 at 6:58 am
Check for the maximum number of connections that the os allows to the workstation. It may be 10 for non-servers. Whatever the number, only that many SQL connections...
December 6, 2012 at 8:43 am
Don't know if this is exactly what you are wanting, but I wrote this to search all tables for occurance of given string. Just change the database context line,...
November 29, 2012 at 9:43 am
Unfortunately, I have a food court server with several databases for almost as many applications. Some vendors have access to their databases. Also unfortunately, some have db_owner rights...
November 21, 2012 at 6:57 am
Just to add my scenario, I have multiple SQL Servers (approx. 8), with a few databases on each, not big, largest db is 25 GB. (One Oracle DB is...
November 20, 2012 at 1:03 pm
See the following url for an Instance Security Audit script I wrote. It prints in columnar format, and you can change one variable to make it print the actual...
November 16, 2012 at 6:36 am
Of course, SQLServerCentral.com is great for SQL Server, but for one-stop-shopping, you might try http://www.databasejournal.com. It covers SQL Server, Oracle, DB2, Access, MySQL, PostgreSQL, Sybase, etc. ...
November 15, 2012 at 7:42 am
Well, that didn't work very well, did it. You get the picture.
November 15, 2012 at 7:29 am
I know it is still early in the day, but given the logic of the select and update, would this not work?
UPDATE AGS_Hands_InProcess SET
Win= 5, -- the value from the...
November 15, 2012 at 7:15 am
If you don't have any mount points, here is a script for using the xp_fixeddrives function. The threshold is set in the if exists line, and sends an email...
November 9, 2012 at 8:55 am
FYI... Here is the batch file line that I use to run a .sql script.
sqlcmd -S MyServerName\SQLEXPRESS -E -i C:\SQLScripts\SomeScriptToRun.sql -o C:\SQLBackupLogs\SomeDescription_backuplog.txt
It will write the output log to the SomeDescription_backuplog.txt...
November 9, 2012 at 8:40 am
First, see the following url for an Instance Security Audit script I wrote. It lists out all the users, roles, and object permissions for every database in an instance.
November 1, 2012 at 9:35 am
See the following url for an Instance Security Audit script I wrote. It will tell you whether you have a DENY in your permissions for the database. Hope it...
October 31, 2012 at 2:22 pm
Viewing 15 posts - 31 through 45 (of 190 total)