Viewing 15 posts - 196 through 210 (of 546 total)
Remember, the trace is recycled based on the transaction level of you SQL Server. So you might end up filling up the trace in 1/2 a day or even 2...
November 17, 2008 at 1:19 pm
Having Roles is a good Primary Choice.
consider Blocking Incoming Applications at FIREWALL. (Firewall Rules)
Create a TRIGGER to check for username and Program_name from sysprocesses and immideatly Kill the Process inside...
October 1, 2008 at 12:22 pm
Does the application have any APPLICATION / DATABASE Roles.
Are the users even able to login using their windows ID's apart form the SQL ID
October 1, 2008 at 12:18 pm
about Database uptime: as far as i know there is nothing to prove database uptime. Except when it was last used.(lookup db objects)
yes you can create the job to send...
September 11, 2008 at 2:12 pm
Does this happen Frequently or Rarely.
If it is a RARE kind of Deal, you can ignore this messages in the LOG.
As per Microsoft:
You may receive this error message when you...
July 26, 2008 at 11:22 am
The TRACE files are under the SQL Server LOG Folder by default.
July 26, 2008 at 11:06 am
That is kind a challenging and if anybody will provide you a script might be Half baked or someting..
Try to Google around.
But here is a list of countries to start...
July 26, 2008 at 11:00 am
check your default SQL Trace and check to see for any such activity...
July 26, 2008 at 10:47 am
Are you trying to O/P the result of a Query or something else.
What does this job do..
July 24, 2008 at 11:55 am
Try to get the DB in SIMPLE Recovery Mode and then
use DatabaseName
DBCC SHRINKFILE(transactionlogname,10).This will Shrink your Log to 10MB in size etc...
Try this also in FULL Mode.
July 24, 2008 at 11:53 am
can you do a sp_helpdb [database name]
Check your translog Growth.
Check your Growth % if changed.
Maybe it is the transaction Log.
Describe your Recovery mode.(Full/SIMPLE/BULK)??
how many users are connecting to the Database.
Was...
July 24, 2008 at 11:42 am
Ok, Just try a RESTORE with REPLACE like this:
RESTORE DATABASE [your database name] from disk = 'Backup file name and path'
WITH REPLACE, RECOVERY
July 23, 2008 at 11:00 am
Yes Client Licenses are not a good choice, if you are planning a website with good # of users. Try diggning into the per processor Licensing strategy, that could simplify...
July 23, 2008 at 10:48 am
Try to drop the database with 'drop database' statement then restore from backup. If you have a valid BAckup.
July 23, 2008 at 10:42 am
Viewing 15 posts - 196 through 210 (of 546 total)