Viewing 12 posts - 1 through 12 (of 12 total)
Thanks Wayne, that is a great solution... I'm still a newbie at SQL, so that never dawned on me... I will definitely try it out.. Thanks for your help!
December 31, 2010 at 3:27 pm
PaulB-TheOneAndOnly (4/5/2010)
Once you have...
April 5, 2010 at 11:49 am
CirquedeSQLeil (4/5/2010)
olie480 (4/5/2010)
April 5, 2010 at 10:27 am
What I do know is that if I have 4 'John Smiths' and if they were all different people, the Address column would be different for each of those entities....
April 5, 2010 at 9:58 am
Jeff Moden (4/2/2010)
April 2, 2010 at 11:20 pm
Jeff Moden (4/2/2010)
April 2, 2010 at 11:20 pm
lmu92 (4/2/2010)
If you're using SQL Server 2000, the query shouldn't run at all since table variable as well as ROW_NUMBER function that I've...
April 2, 2010 at 8:23 pm
lmu92 (4/2/2010)
Something like this:
DECLARE @tbl TABLE
(
CustNumber INT, FirstName VARCHAR(30), LastName VARCHAR(30), City VARCHAR(30)
)
INSERT INTO @tbl
SELECT 345321 ,'John','Doe','Kellogg' UNION ALL
SELECT...
April 2, 2010 at 4:38 pm
Alright, I just ran the script on the sample database, and everything worked out great! Thanks again for your help. I know that there are many JOIN commands, INNER, OUTER,...
March 31, 2010 at 9:43 am
Thanks for the help guys, I will definitely try this tomorrow and report back.
I kind of figured it had to do with a join, but like I said, JOIN is...
March 30, 2010 at 8:08 pm
Did you try DTS import/export wizard?
Wow! That's it! That is exactly what I was looking for! Thank you so much!
The new Microsoft POS (Dynamics POS 2009) has a tool that...
February 8, 2010 at 1:23 pm
I know I wouldn't have a problem with backup and restore if the database (or program) was the same, but in this instance, I have table names that are changing...
February 8, 2010 at 12:08 pm
Viewing 12 posts - 1 through 12 (of 12 total)