Viewing 15 posts - 24,121 through 24,135 (of 26,486 total)
Take a look at the following code. Hopefully it will help you determine what you need to do accomplish.
/*
Create temporary tables for testing
*/
create table #MyImportTable...
October 15, 2008 at 1:55 pm
What is the result of running the following from an earlier post?
RESTORE HEADERONLY FROM backupDevice -- replace backupDevice with the filename of the backup diskfile.
October 15, 2008 at 1:31 pm
Helps, but I have one more question. What is the DDL for the final destination table?
😎
October 15, 2008 at 1:21 pm
First piece of advice, don't shrink the database. If you do it before the index rebuild/defrag, you'll most likely fragment the physical data file as it will grow as...
October 15, 2008 at 1:15 pm
Two things. One, have you looked up master database in BOL? It talks about restoring the master database. Two, when you started SQL Server to restore the...
October 15, 2008 at 1:08 pm
Thanks, but that doesn't answer my question. Is there anything in the data files that will uniquely identify each row in the import file?
😎
October 15, 2008 at 12:58 pm
You want to use a Flat File destination in the data Flow to create a csv file.
😎
October 15, 2008 at 12:52 pm
"Only Capitalists can kill Capitalism; by exploiting it's core principals at the expense of and to the detrement of the general public instead of working with the principals of the...
October 15, 2008 at 11:13 am
Does the data have any data elements that uniquely identifies each row?
October 15, 2008 at 10:52 am
Andrew Gothard (10/15/2008)
It does say that, doesn't it. Wonder if :I've never tripped over that one before over the past almost 2 decades or what.
Not very intuitive though -...
October 15, 2008 at 10:29 am
Actually, since you posted this in a SQL Server 2005 forum, this looks like a good place to use Service Broker. Creating the csv file directly in a trigger...
October 14, 2008 at 7:44 am
It might help if we could see the actual code you are working with else wise all we can do is guess at what may help you.
😎
October 13, 2008 at 1:33 pm
Have you tried this:
ALTER DATABASE [SharePoint_AdminContent_1f7d4d63-662f-4180-a6b9-7d4b35b27435]
MODIFY FILE ( NAME = SharePoint_AdminContent_1f7d4d63-662f-4180-a6b9-7d4b35b27435_Log,
...
October 12, 2008 at 10:54 pm
Have to agree with the others. I can't even get SQL Server to show a time different than the server installed on.
I think something is missing from your description...
October 10, 2008 at 11:46 am
Give this a try in a test environment first:
update dbo.table1 set
LogonStaffNo = t3.LogonStaffNo
from
dbo.table1 t1
inner join dbo.table2 t2
...
October 10, 2008 at 11:09 am
Viewing 15 posts - 24,121 through 24,135 (of 26,486 total)