V
Vayse
Hi
I'd like to convert this access query into a stored prodedure.
INSERT INTO dbo_Clients_Schedule ( CS_ScheduleID, CS_Sequence, CS_Desc,
CS_Show, CS_ClientID )
SELECT dbo_ScheduleOfInsurances.ScheduleID,
dbo_ScheduleOfInsurances.Sch_Sequence, dbo_ScheduleOfInsurances.Sch_Desc,
True AS ShowSch, [Enter Client ID] AS SchClient
FROM dbo_ScheduleOfInsurances;
ClientID will be string of length 6.
I'll be then running this sp from code, but I think I'm ok on that part. Its
the actual writing of the stored procedure that has me confused.
Thanks
Vayse
I'd like to convert this access query into a stored prodedure.
INSERT INTO dbo_Clients_Schedule ( CS_ScheduleID, CS_Sequence, CS_Desc,
CS_Show, CS_ClientID )
SELECT dbo_ScheduleOfInsurances.ScheduleID,
dbo_ScheduleOfInsurances.Sch_Sequence, dbo_ScheduleOfInsurances.Sch_Desc,
True AS ShowSch, [Enter Client ID] AS SchClient
FROM dbo_ScheduleOfInsurances;
ClientID will be string of length 6.
I'll be then running this sp from code, but I think I'm ok on that part. Its
the actual writing of the stored procedure that has me confused.
Thanks
Vayse