Viewing 15 posts - 976 through 990 (of 2,904 total)
Some activity happens too fast for sp_who or sp_who2 to catch.
-SQLBill
June 13, 2006 at 8:23 am
Also look at tape backups.......is Veritas Backup Exec being used? BE10d has the ability to backup files to disk and with the Agent for SQL Server, it could create database...
June 13, 2006 at 6:26 am
When you rebuild the indexes, that will leave more empty space in the database (.mdf) and the log file (.ldf) will be huge. You could just leave the empty...
June 12, 2006 at 12:53 pm
I would reindex then shrink. Reindexing causes the log file to grow 1.5 to 2 times the size of the database being reindexed.
-SQLBIll
June 12, 2006 at 10:53 am
Another thing....you say the schedule is enabled, but is the JOB enabled? It's two different things. Right click on the job, in the pop-up list there should be either...
June 9, 2006 at 8:25 am
Are there any error messages? In Enterprise Manager, you should be able to click on Jobs and find the maintenance job. Right click on it, select View Job History, then...
June 9, 2006 at 8:22 am
You just open it to the IP address. That will give the user the ability to access any database on that server. You should be able to do it in...
June 9, 2006 at 8:01 am
Also, check out fn_get_sql in the BOL. It is better than DBCC INPUTBUFFER.
You might also want to consider using a trigger (ON DELETE) to help capture what you want. Maybe...
June 8, 2006 at 10:52 am
It contains whatever was backed up to it.
I do full backups, differential backups, and log backups. For me, my backup names tell me what they are. For example:
MyDB_Full.bak
MyDB_Diff.bak
MyDB_Log.bak
Without seeing your...
June 8, 2006 at 10:48 am
Check your named instance......it will be using a different port. You need to make sure that port is open.
-SQLBill
June 8, 2006 at 10:44 am
You can't trace past connections. SQL Server doesn't have any way to tell the time that a database was last accessed. It would take too many resources to keep...
June 7, 2006 at 11:59 am
The person is admin on the local box for his instance of sql server [end quote]
If he/she is a local admin on the server that hosts the SQL Server,...
June 7, 2006 at 11:56 am
This is a duplicate post and was answered already......but for the record...
Enclose the header with square brackets or single quotes.
SELECT mycol AS 'User Account'
or
SELECT mycol AS [User Account]
-SQLBill
June 7, 2006 at 6:41 am
Is the person an admin on the local box or domain? If so, they fall under the BUILTIN/Administrators login in SQL Server.
-SQLBill
June 7, 2006 at 6:33 am
Do you also use ROLES? See if the user is a member of a role. For example: John Doe is a user, but is also a member of the...
June 6, 2006 at 12:07 pm
Viewing 15 posts - 976 through 990 (of 2,904 total)