Viewing 9 posts - 1 through 9 (of 9 total)
Thanks, sorry for the simple question... now I see the answer...
September 9, 2003 at 7:25 am
With this select statement using EXEC how would I get the result back into another variable ??
Thanks for the help...
August 8, 2003 at 10:27 am
The field name is 'Jan' that I want a sum for... it is a float field but called Jan
August 8, 2003 at 8:59 am
Try to take the space away between the database name and the open brackets ( ... This was one problem I had...
INSERT INTO tblhbest1(UnternehmenID, Handelsobjekt) SELECT UnternehmenID, Handelsobjekt FROM view1
April 15, 2003 at 8:36 am
I did it... Thanks Frank for the help... here it is ... the column names were the key...
ALTER PROCEDURE dbo.CreateRTMdb AS
TRUNCATE TABLE kc_RTMb
INSERT INTO kc_RTMb(Period, MKT, SEC, CT,...
April 15, 2003 at 8:09 am
by using AS in the select statement, are you not specifing the columns then ??
Thanks for all your help Frank
John
April 15, 2003 at 7:09 am
Sorry also this is for frequent use, I plan to have it in a stored procedure...
April 15, 2003 at 6:51 am
Already tried that but I get "Insert Error: Column name or number of supplied values does not match table definition." as I am using Sum's ... how do I get...
April 15, 2003 at 6:49 am
I have included the source and the dest ... I need to take the first fields and then the MillCompany & Code add a new record with the rest of...
April 15, 2003 at 4:36 am
Viewing 9 posts - 1 through 9 (of 9 total)