Viewing 15 posts - 211 through 225 (of 248 total)
USE [DEV]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TRIGGER [dbo].[update_trigger]ON [dbo].[Transaction_Tracking]
AFTER UPDATE
AS
BEGIN
INSERT
INTO [dbo].[eRPT_Transaction_Audit]
( Package_ID, Received_Date, Start_Date,Operation, TriggerTable)
SELECT i.Package_ID, i.Received_Date, i.Start_Date,'U', 'I'
FROM inserted i
INNER JOIN...
February 6, 2013 at 4:24 pm
I am trying to alter the datatype of the primary key of the table. The primary key has the identity seed set on and the table has 3 triggers.
February 5, 2013 at 6:48 pm
When I am using bids, I do not see the dataset on the left side of the visual studio ide. Can you tell me how to display the dataset?
February 5, 2013 at 6:41 pm
When I was orginally using the code, I had full 'sa' permissions. Now when I using the other database, there are no special permissions that have been setup.
Thus can...
February 5, 2013 at 6:10 am
The sql you gave me works correctly. I just submitted the query in a general query window. My problem is I do not know where the database trigger is located...
January 27, 2013 at 6:22 pm
What would you want to see? The columns in the tables and/or the data?
December 25, 2012 at 11:36 am
I am just giving you an example of the sql that is generated by the ssms. if there is sql problems, I just showed you an example, since I am...
August 6, 2012 at 9:42 am
Thanks for your answer so far!
I have the following additional questions:
1. Can you tell me how to work with a SSIS package in bids. I have only used bids for...
May 30, 2012 at 12:32 pm
If the hidden columns/rows cause a problem, what do you think I should do to solve the problem?
May 22, 2012 at 8:19 am
Your solution worked great!
However, now I am having trouble saving the color and width of the line you suggested I draw. I try to save the color and line...
May 21, 2012 at 8:04 am
How will the ssrs report know how to find the stored procedure? Do you need to set something else up?
May 17, 2012 at 10:52 am
Viewing 15 posts - 211 through 225 (of 248 total)