Viewing 4 posts - 1 through 4 (of 4 total)
Is this going to be a one-time job?
Or will you be running this scheduled (daily, weekly...) as new files come in?
So you receive MYFILE01012009.txt, then MYFILE01022009.txt... each day?
Will all the...
February 17, 2009 at 10:35 pm
If you just want to copy the data (or selected data) and keep the identity values as is, there is a flag you can set so that you can enter...
February 17, 2009 at 10:24 pm
INSERT INTO Employee (Name, CardNo)
SELECT T.Name, T.CardNo
FROM Emp_Detail T
WHERE NOT EXISTS (SELECT TOP 1 1
FROM Stuff_Detail I
...
February 17, 2009 at 10:10 pm
It's just missing one thing - a disclaimer: "Unless you're a manager." At one job, had to teach all these to the self proclaimed "DBA Specialist." And then...
April 12, 2007 at 10:59 pm
Viewing 4 posts - 1 through 4 (of 4 total)