Viewing 15 posts - 211 through 225 (of 226 total)
I do not think you can attach the database with just 1 file. Try and let us know if you are successful. if you want to get rid of 1 file....
May 18, 2005 at 3:08 pm
The transaction log grow mostly because there is no proper Tlog backup or the recovery model is set to full and there is a reindexing or any bulk- insert activities...
May 17, 2005 at 11:14 pm
what is the operating System
Operating System | Enterprise Edition | Standard Edition |
Microsoft Windows 2000 DataCenter | 64GB | 2GB |
Windows 2000 Advanced Server | 8GB | 2GB |
Windows... |
May 17, 2005 at 11:10 pm
You can restrict the size of Transaction Log. Noeld answer is correct . Just to add you can use @job_id parameter to run a particular job if the event happens. Example...
May 17, 2005 at 10:57 pm
I do not know what is your database size and disk space but make sure you have enough disk space for transaction log if the recovery model is set to...
May 17, 2005 at 10:27 pm
Check the SQL Agent Error Log.
Make sure the database is defined properly in the job step.
Secondly never use direct SQL Commands (which refers to objects) in the jobs step. Create a...
May 11, 2005 at 1:01 am
First of all the reason for increase in the size of trnascation log is beacuse of Full Recovery. Are you running a bulk insert or optimizer on the database ?...
May 11, 2005 at 12:49 am
Does it return any error. Check the error log file also
May 11, 2005 at 12:41 am
Your database is victim of TORN_PAGE_DETECTION.
You should restore from backup but as you do not have a backup try using
sp_resetstatus database_name. Remember to reboot the server before trying to...
May 11, 2005 at 12:34 am
Troy
I would like you to interview me. I am not looking for a job just want to check how cruel you can be....
April 18, 2005 at 2:43 pm
I am not administering 2005 database. All the database are of 2000 , I just installed 2005 beta version
February 13, 2005 at 7:24 pm
I was suppose to test this. Good now i will wait for the answer and do other projects
February 11, 2005 at 11:14 am
Try this
SELECT rowcnt FROM Sysindex
WHERE Indid in (0,1) AND Id=Object_Id('<name of your table>')
February 11, 2005 at 10:46 am
If you have couple of steps in the job then narrow down as which step is taking the time, how many time the retry option is set up in the...
August 17, 2004 at 2:12 pm
Viewing 15 posts - 211 through 225 (of 226 total)