0
votes
2answers
43 views

SQL Server 2012 using SELECT in trigger breaks table

So let me first admit that I am a SQL Server newbie. Here's the deal: I'm trying to create a trigger on a table in SQL Server 2012, and whenever I try any kind of SELECT statement in the trigger, the ...
1
vote
1answer
26 views

SQL Server : Trigger After Insert?

Ok, my situation is like this: I have a table named Company, and I want to add a trigger after every record I add in this table that checks if the column Name does not end with 'LTD' then add 'LTD' ...
1
vote
1answer
298 views

SSIS Package Errors using OLE DB Command transformation

I recently begun upgrading a MS SQL Server 2005 instance to MS SQL 2012. I have created a VM and installed MS SQL Server and used backups to create the DBs on the new server. In Visual Studio I was ...
0
votes
1answer
138 views

T-SQL “after insert trigger” invoke by store procedure

I have a store procedure that inserts records in table and at the same time delete all records older then 20 minutes. I have try to optimized it and have seen that the delete operation cost to ...
1
vote
3answers
142 views

Trigger to update record when Value = GETDATE()

my experience with triggers is that it does something after an update,insert or delete. But is it possible to create a trigger to update a record automatically when its date is today? for example, I ...
1
vote
1answer
87 views

Insert, Update Triggers

I have a Table called Couple which has the following Fields CoupleId, HusbandId , WifeId , StartDate , EndDate The previous Table contains informations about couple, The CoupleId is a primary key ...
0
votes
1answer
146 views

Trigger that only runs runs once per day

This trigger backs up data from dbo.node to dbo.nodearchive. While backups are important, I only need to do this once per day. Note that there is a field called dbo.NodeArchive.versionDate ...
2
votes
1answer
408 views

SQL Trigger after Bulk Insert

I receive a CSV file weekly that I import into my SQL database using BULK INSERT. I insert into a temporary table and then merge that with the main table by inserting new records and updating any ...
0
votes
0answers
179 views

Access Upsized DB Triggers - Converting to SQL Server 2012

We have an Access Application that was previously upsized to some previous version of SQL Server (probably 2005 or 2008). I wasn't part of the company when the database was upsized, and it has a ...
0
votes
1answer
654 views

SQL Server trigger delete or cascade delete

First off I haven't done much SQL code before only the basic CRUD, but I'm involved in a project in which I have access to SQL Server and its up to me to write the SQL. I've been busy looking on ...
1
vote
1answer
258 views

How Can I debug a CLR trigger from SQL Server 2012

I have installed the SSDT to connect to a sql server 2012 instance and Id like to know how can I debug a CLR trigger from the database, I have created a database project to create the clr trigger and ...
3
votes
0answers
400 views

What's wrong with my Update Trigger for an Sql Server 2012 FileTable

I have a table, 'game.FileAttachments' which has a stream_id column that links to the stream_id column of a File table, 'game.Attachments'. I created an Update trigger on the File table, to update the ...
0
votes
2answers
79 views

Counting referenced records by trigger

I've discovered a new problem: I have a two tables, Classes and Students. Students references to Classes by [ClassID] column. Classes have column named [Count], which storing count of referencing ...
1
vote
1answer
427 views

Logging update operation in triggers

I have an UPDATE trigger that produces INSERTED and DELETED table like this: INSERTED Id Name Surname 1 Stack Overflow 2 Luigi Saggese DELETED Id Name Surname 1 Stacks Overflow ...
4
votes
4answers
1k views

MSSQL 2012 creating CLR triggers for WCF fails

I've created system that uses CLR triggers to connect to WCF server and notify it about changes in DB. It runs ok on SQL server 2008 R2. Now im trying to migrate on SQL Server 2012. To use WCF i need ...