Viewing 4 posts - 46 through 49 (of 49 total)
I need to joing on service ID.
SELECT tbl_index_ticket_services.ServiceID, tbl_lookup_type_services.ID, tbl_lookup_type_services.ServiceType, tbl_index_ticket_services.DateAdded,
...
June 1, 2009 at 9:58 am
Hi there, I have a solution but if the entry is existing it just does an update. Canyou please help me out,
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER procedure [dbo].[sprInsertServiceTypeToTicket]
(
@ticketID int =...
June 1, 2009 at 7:17 am
I would love it if you guys could give me an hand.
CREATE PROCEDURE [dbo].[sprUpdateServiceTypeToTicket]
@indexTicketServiceID int = null,
@ticketID int = null,
@dateAdded datetime = null,
@agentAdded nvarchar(50) = null,
@dateCreated datetime = null,
@flagRemoved bit...
May 31, 2009 at 4:29 pm
I would like to fix the stored procedure what needs to be fixed?
so if exist then do an update otherwise do an insert.
May 31, 2009 at 3:47 pm
Viewing 4 posts - 46 through 49 (of 49 total)