Viewing 15 posts - 1,036 through 1,050 (of 2,904 total)
I don't know if this is part of the problem:
Note SQL Server 7.0 system databases are not compatible with SQL Server 2000. Do not attach SQL Server 7.0 master, model,...
May 15, 2006 at 12:02 pm
As Phil pointed out .mdf/.ldf files are not your normal backups and cannot be 'restored'. You can use Phil's method to attach the files or use the sp_attach_db command (refer...
May 15, 2006 at 7:19 am
If your database is in FULL recovery mode, you need to be doing full AND log backups.
-SQLBill
May 15, 2006 at 7:16 am
After you run the shrinkfile command, you need to run DBCC UPDATEUSAGE command. Refer to the BOL for the proper syntax.
-SQLBill
May 15, 2006 at 7:14 am
After you delete the transaction log, do you do a Full Backup? If not, then the transaction log backups are worthless to you. Deleting the .ldf
'breaks the restore...
May 12, 2006 at 7:27 am
DATETIMEs are NOT stored in any 'date' recognizable format. They are not stored as 1/20/2006, 20/1/2006, or 2006-01-20. They are stored as bits. It is the front end that translates...
May 11, 2006 at 6:09 am
Why are you deleting the transaction log? This is really not a good thing to do and should only be done in emergencies.
If you don't need the transaction log for...
May 11, 2006 at 5:58 am
1. You say you installed the client tools...do you have a database installed somewhere?
2. Where is the database installed? Can you go to that system and log into the database?
3....
May 11, 2006 at 5:56 am
I would guess that you would have something like a SUS server. That is the 'central' update server. It gets all the updates (such as from Microsoft) and then distributes...
May 10, 2006 at 1:14 pm
Something else to check.....is this extra space in the Data files or the log files?
Is your database in FULL Recovery Mode or SIMPLE Recovery Mode? If in FULL Recovery Mode...
May 10, 2006 at 1:11 pm
You are probably using Windows Firewall. If so, it blocks the SQL Server ports by default (1433 and 1434).
Check that first. Next do you have a login on the...
May 10, 2006 at 5:48 am
It's probably an issue of you doing the backup to the same disk(s) as the database. It's trying to read from AND write to the same drives at the same...
May 9, 2006 at 1:03 pm
Refer to the BOL, use the index tab, enter RESTORE DATABASE, then choose the option that says Transact SQL.
Basically, you need to run the RESTORE like this:
RESTORE DATABASE dbname
FROM .....
WITH...
May 9, 2006 at 12:59 pm
Lots of reasons.......are you doing database maintenance, such as reindexing? That will cause it to grow to a large size.
-SQLBill
May 9, 2006 at 12:50 pm
You have other problems......I backup a 200+ GB database every day (full backup) and it doesn't have any affect on the server.
Maybe your system isn't powerful enough? Maybe you have...
May 9, 2006 at 11:16 am
Viewing 15 posts - 1,036 through 1,050 (of 2,904 total)