Viewing 15 posts - 61 through 75 (of 125 total)
What type of file is that? (means like csv or ...)
May 25, 2004 at 7:55 am
Dave,
I am also looking for that type of job,
Would you please post the scripts and explain little more?.
Thanks.
May 19, 2004 at 8:13 am
Try this,
Put SET NOCOUNT ON at the beggining of stored procedure
SET NOCOUNT OFF at the ending of stored procedure
May 10, 2004 at 1:10 pm
Thanks for your response,
I did follow the sswords idea, it worked for me.
May 4, 2004 at 6:50 am
Try This,
set @v_Query = @v_Query + ' si.Order_Date > ''' + CONVERT(CHAR(10),@ServiceCallStartDate,101) + ''''
Thanks,
April 27, 2004 at 10:29 am
BABITA,
I think your code is for Oracle.
Dave,
Unfortunatly i cannot change the table structure, you mentioned that you had a program for this, could you please tell me hints how can...
April 27, 2004 at 8:18 am
Thanks for your reply, but i want to pass temp table from one stored procedure to another.
April 23, 2004 at 9:10 am
Could you please post the error message.
April 7, 2004 at 11:08 am
David,
Let me explain my problem here
CREATE TABLE TEMP
(ID INT,
stdate DATETIME,
CODE CHAR(10))
INSERT INTO TEMP VALUES(1,'2004-04-01','TEST1')
INSERT INTO TEMP VALUES(2,'2004-04-02','TEST1')
INSERT INTO TEMP VALUES(3,'2004-04-03','TEST1')
INSERT INTO TEMP VALUES(4,'2004-04-01','TEST2')
INSERT INTO TEMP VALUES(5,'2004-04-02','TEST2')
INSERT INTO TEMP VALUES(6,'2004-04-03','TEST2')
INSERT...
April 7, 2004 at 10:27 am
Viewing 15 posts - 61 through 75 (of 125 total)