Viewing 6 posts - 1 through 6 (of 6 total)
Hi Guys
I have a problem same here
snap part of my code
LEFT JOIN tblAPBill
on tblAPPAymentDetail.strOrderNumber = tblAPBill.strOrderNumber
OR SUBSTRING(tblAPCheckBook.strLink,...
October 23, 2009 at 3:10 pm
As of now, All i have is a trigger example :
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER TRIGGER [dbo].[trg_SynctblICInventoryCategory]
ON [dbo].[tblICInventoryCategory]
--WITH ENCRYPTION
FOR INSERT, UPDATE
AS
BEGIN
INSERT INTO [SampleData].dbo.ac_CatalogNodes (
CategoryID
, CatalogNodeID
, CatalogNodeTypeID
, OrderBy)
SELECT
isnull(c.CategoryID, 0)
,isnull(p.ProductID, 0)
, 1
,...
September 17, 2009 at 10:22 am
Yes, I do receive your reply. So based on your reply i need to add a Try catch in every trigger that I have or is there another option around?.....
September 17, 2009 at 9:52 am
Hi there,
Yeah it's true this script is created for Oracle so I am looking a way in where i was able to do it also in SQL 2005 do you...
September 17, 2009 at 9:01 am
Hi Guys
Browsing the net i found this useful information with regards to the issue i posted
CREATE TABLE error_log (
timestamp DATETIME,
...
September 16, 2009 at 1:17 pm
Thanks Jack, I will definitely check the link that you gave:-D
Well Appreciated
Shyrill
August 18, 2009 at 12:24 pm
Viewing 6 posts - 1 through 6 (of 6 total)