Viewing 15 posts - 751 through 765 (of 2,904 total)
How did YOU detach it?
You can do it two ways.
1. Enterprise Manager. Right click on the database, select All Tasks, Detach Database.
2. Query Analyzer. Run:
USE Master
sp_detach_db 'dbname'
-SQLBill
December 6, 2006 at 4:24 pm
Why can't you do it yourself? This should do the job.
INSERT INTO \\servername.dbname.owner.tablename
SELECT * FROM dbname.owner.table
-SQLBill
December 6, 2006 at 4:20 pm
Good article about trying to work together. But it goes both ways. I'm a DBA and we have a developer who does EVERYTHING as a DTS package. Each step...
December 6, 2006 at 2:39 pm
Nope, can't be used. It sounds like you don't have enough disk space for the files to be attached. Check that.
Can you afford data to possibly be lost?...
December 6, 2006 at 12:37 pm
If your recovery mode is FULL, you need to do both the full backup and the transaction log backup. If you don't do the log backups, your log file...
December 6, 2006 at 12:35 pm
You are correct....my mistake. I misread the request.
-SQLBill
December 6, 2006 at 12:33 pm
Most important. Was the .mdf file copied when the database was offline? If not, it probably is unusable.
-SQLBill
December 6, 2006 at 12:31 pm
What went wrong - an explanation.
COUNT is an INTEGER value.
count(convert(varchar(15), kund_id)) end as no_of_customers
Since the first values returned are COUNTs, the column becomes INTEGER. Then you get a value...
December 6, 2006 at 8:51 am
Previous versions were 6 & 7. Microsoft numbers the versions one up. That shows the progression even when the name doesn't.
-SQLBill
December 6, 2006 at 8:47 am
Try the RESTORE HEADERONLY command. Look up the syntax in BOL. I'm not sure that will give you what you want, but try it.
-SQLBill
December 5, 2006 at 9:07 pm
Unfortunately once you recover the database you can't do any more restores. As Ronald says, you will have to start over. Remember to use that WITH NORECOVERY until you...
December 5, 2006 at 9:02 pm
And they keep harping on the fact they are one of the youngest Oracle certified DBA's. But I knew a guy who had a photographic memory - he passed...
December 5, 2006 at 12:36 pm
My problem is that the Books OnLine is downloadable. You are applying for a SQL Server DBA job and have posted LOTS of questions here. They are very basic SQL...
December 4, 2006 at 4:59 pm
My problem is that the Books OnLine is downloadable. You are applying for a SQL Server DBA job and have posted LOTS of questions here. They are very basic...
December 4, 2006 at 4:58 pm
Just so anyone else is interested:
FYI - this poster had this to say in another thread:
im oracle dba and applied for sql dba job and been given sql db questions,...
December 4, 2006 at 4:48 pm
Viewing 15 posts - 751 through 765 (of 2,904 total)