Tagged Questions
0
votes
0answers
26 views
Execution of DLL code from SQL server
I am trying to create an online MVC 4 web appointment reminder system and I would like some pointers into the direction I should take. At the moment, I am cracking my head trying to figure out the ...
1
vote
1answer
27 views
Trigger - Insert into audit, prevent update on live table
First post here.
I want to create a trigger so that when someone tries to update the table it prevents the update and logs the attempt in an audit table.
USE [AdventureWorks2008R2]
GO
SET ...
0
votes
2answers
30 views
SQL to trigger batch file
We are using SQL Server 2008R2 to handle a mail queue. New mail is entered into the queue and then once every minute a batch file reads the unprocessed mails, does some processing, sends the mail via ...
2
votes
1answer
84 views
SQL Server trigger to conditionally update a column in the same table I am inserting or updating to
New to posting in this forum by have been lurking for years. I have a trigger question that seems to be above my head in both innate knowledge and researching skills.
I have created an appointment ...
0
votes
2answers
57 views
splitting datetime into date/year/month/dayname and count year
i got question to split date, month year, dayname from datetime by using trigger, when i insert a datetime , then in next colom will split date, time , month year dayname and count year (to know how ...
1
vote
3answers
119 views
SQL Server 2008: create trigger across all tables in db
Using SQL Server 2008, I've created a database where every table has a datetime column called "CreatedDt". What I'd like to do is create a trigger for each table so that when a value is inserted, the ...
-1
votes
0answers
141 views
Can you execute a SQL Insert Update Trigger after a MERGE
Answering the following question may solve my problem and help me understand the MERGE operation better.
Is it possible to setup a Trigger to run after a MERGE operation?
I have the following MERGE ...
1
vote
1answer
27 views
Ensure endDate equal to or later than startDate
I have a table in which I need to ensure that startDate is not later than endDate.
Either date can be updated so the rules have to apply regardless if startDate or endDate (or both) are ...
0
votes
0answers
119 views
SQL Server 2008 Computed Column / Trigger / Function to link multiple tables and enter data into another table
I've got the following problem, which I'd like to solve in SQL Server 2008.
I have a table Products, each product with a range of up to 3 different areas, which contains information about the total ...
0
votes
1answer
49 views
SQL Server Trigger On Update or Insert
Here is my tables:
Report Table:
ReportID Status
1 'out'
2 null
Log Table
LogID Status ReportID
1 'out' 1
When I insert a new record into Log ...
0
votes
1answer
43 views
Multi-row action for Instead of trigger SQL Server
Scenario/background:
I am trying to create a table of "Tests". For purposes of this question my table will only have 5 columns defined as follows:
CREATE TABLE TestTable
(
Id ...
0
votes
4answers
64 views
t-sql single default value for multiple records
I have an MSSQL Server 2008 table that associates multiple photos to houses, as follows:
HouseID - with foreign key to House table
PhotoID - with foreign key to Photo table
It's all working great, ...
0
votes
1answer
49 views
Is it posible to use sp_MSforeachtable procedure to Create Trigger on all tables in a database
Am trying to Create a function that would loop through all the tables in a database and Create a trigger if it does not exist.After some research i came across the store procedure:"sp_MSforeachtable ...
0
votes
0answers
70 views
Create one trigger for all tables in a database
I want to Create trigger on a database that would first check if similar trigger exist,if not it then create it.The For any insertion on any table in the database,it populate the DateCreated and ...
0
votes
1answer
24 views
How can i increment month name in trigger?
ALTER trigger [dbo].[trg_Billing_TotalFee] on [dbo].[tblBilling] after insert as insert into tblTotalFee(DueFromPreviousMonth,StudentID,MonthName) select RemainingAmount,StudentID,MonthName from ...
0
votes
0answers
74 views
Setup SQL Trigger to email based on multiple values from one column
I'm trying to setup a trigger so that it will email me if a column (strAdmitReason) matches a set number of values. There is an added problem of the column is populated based on a free text field, ...
0
votes
1answer
42 views
How to write trigger which copies value of a column of a table to another column of another table?
I have a table tblBilling and tblTotalFee. One of my column in tblBilling is named as RemainingAmount and in tblTotalFee i have another column named Due From Previous Month. Now what i want is ...
1
vote
1answer
123 views
Trigger on update of an attribute of a table in SQL Server?
I created computer audit application. When I ran my application, it shows computer accessories on browser like computerName, osVersion, lastAudit, model, totalMemory, processor, userName.
I have ...
-3
votes
1answer
112 views
Create trigger to know who made changes in SQL Server table
I have one table Products and a second Products_audit with two columns User and Date.
Could you please assist me in writing a trigger for table Products to handle this requirement:
when anybody ...
2
votes
2answers
82 views
Forbid insert into table on certain conditions
I have a SQL Server 2008 database. There are three terminals connected to it (A, B, C). There is a table SampleTable in the database, which reacts to any terminal activity. Every time there is some ...
3
votes
2answers
123 views
Parsing range values to comma separated array of values in insert trigger
I need some help parsing values in before insert trigger on SQL2008 server.
I have a table that contains a text field (lets call it source).
The field value may look like this
10-15,20-22,25-26,
...
0
votes
1answer
159 views
MERGE leads to 'Subquery returned more than 1 value' error in trigger
Below is the trigger that is on the table and the query I am using for updating.
Trigger
This trigger will update a Type ID column based on the text inserted or updated into another column...This is ...
0
votes
3answers
99 views
SQL Server 2008 created/last updated trigger issue
I am using this trigger in order to fill in the CreatedDate and LastUpdated columns (of type datetime) in a table:
CREATE TRIGGER trCreatedDate ON [LasMTest]
FOR INSERT
AS
UPDATE [LasMTest]
...
1
vote
3answers
112 views
Trigger, SQL SERVER 2008
i have two tables
PaymentData
Ser Customerid Totalpaid
1. AGP001 2400
2. AGP002 1000
3. AGP003 1500
Receipt
Receipt# Customerid Paid
1. AGP001 1200
2. ...
2
votes
1answer
147 views
Update Trigger : Supertype/subtypes tables
I need some help about triggers. I’m currently developing a platform and a database in order to manage exams at my university. Here is my problem:
I have 1 supertype table, which contains all the ...
1
vote
1answer
128 views
Transfer data from SQLite to SQL Server 2008 at the time of INSERT, UPDATE and DELETE in SQLite
I have both SQLite and SQL Server 2008 r2 to store info..
Both of them have Same DB Tables..
For Eg :
In SQLite I have table like below
PlayerInfo :
PlayerName SteamID Score
Pandian ...
3
votes
2answers
152 views
employee id automatic generate with prefix
i am so confuse i want employee id is automatic generate with prefix format
i know that is possible from before trigger in sql server
i am follow the post
...
0
votes
1answer
30 views
test if an action it was an update in triggers
I created a trigger for a table when a Delete/Update/Insert action has been made.
to test if it was a delete I use this statement :
if exists(select * from deleted)
and if it was an insert :
if ...
0
votes
1answer
71 views
Trigger which calculate values and add it to table
I am trying to wright trigger which will insert missing values in table. I am Using SQL Server Express
I have table
create table test
(suma int ,
summ_year int,
summ_month int
);
then I insert ...
0
votes
1answer
142 views
SQL Server 2008 Audit trigger based on sub string
I would like to create a trigger based on a column but only for those records that end in _ess. How can I set up an audit trigger to do this?
Here is the current trigger but it just checks for all ...
1
vote
2answers
98 views
SQL Server 2008 trigger doesn't work, why?
I have a table called tblReservations with follwing columns:
reserv_ID (int), aptID (int), client_ID (int),
start_date (datetime), end_date (datetime),
details (nvarchar(max)), confirmation (bit)
...
0
votes
1answer
67 views
How to set new field value by trigger when new row is inserting
I've got very ugly application that is using MsSQL server. This app is reading rows from database and sorting them by key field (ASC). The thing that I want to have is sort them by another field (eg. ...
1
vote
1answer
236 views
Trigger to update existing data or insert if data does not exist (multi-row suppport)
I have two tables, both tables contain similar columns of "username", "Date" and "Time". One table (table 2) is essentially a summation of the 'time' column per date where table1 can have multiple ...
0
votes
2answers
79 views
Create trigger after insert
In my table I have besides rest following fields
Email
UpperEmail
I should create trigger which will populate UpperEmail field with Email value transformed to upper letters. How to do this?
0
votes
1answer
82 views
How to prevent only non-empty tables from being dropped using a DDL trigger?
I want to prevent dropping table if there are rows in it.
I wrote:
create trigger prevDrop on database for drop_table
as
begin
if exists (select * from dropped_table)
raiserror('cant ...
0
votes
1answer
146 views
Trigger between linked servers
I have two SQL Server 2008 machines, SQLSERVER1 and SQLSERVER2 (soo original)
In SQLSERVER2, I do:
[SQLSERVER1].[DATABASE].[DBO].StoreProcedure1
All works well.
But if I put into a trigger, I ...
-1
votes
2answers
54 views
How to run an event in C# when a Particular value is inserted in sql server table..?
I have a live application logging some values from a device @ the rate of one insertion per second.
Now my problem is i want to get notified in my UI when value inserted in table goes out of a ...
-1
votes
1answer
310 views
How many triggers can be created on a table in SQL Server?
Is there a limit? How many triggers can be created on a single table in SQL Server?
Also is this limit changed in SQL Server 2000, 2005, 2008 and 2012.
Also there are two types of triggers INSTEAD ...
-1
votes
3answers
69 views
Does my trigger updates all the records
I have written a simple trigger which sets a column value with the id column value.
This is my trigger.
CREATE TRIGGER SubSectionsPrioritytrigger
ON SubSections
AFTER INSERT
AS
UPDATE dbo.SubSections
...
1
vote
1answer
863 views
SQL Server 2008 R2 Trigger multiple rows in a single batch update issue
I have implemented a trigger in SQL Server 2008 R2 in this way -
ALTER TRIGGER [dbo].[trgtblOrgStaffAssocLastUpdate] ON [dbo].[tblOrgStaffAssoc]
AFTER UPDATE
AS
IF EXISTS (SELECT ...
1
vote
1answer
716 views
how to create SQL trigger using IF condition as well doing inner joins
I have below sample format table structure:
CUSTOMER table
CUSTID INT,//PRIMARY KEY
CUSTDATA VARCHAR
EMPLOYEE table
EMPID INT,//PRIMARY KEY
EMPDATA VARCHAR
ITEM table
ITEMID INT,//PRIMARY KEY
...
0
votes
1answer
77 views
Porting PostgreSQL trigger to SQL Server 2008
I have to port a PostgreSQL trigger but since I don't have much experience on that I don't know how to change some parts. The original trigger is:
CREATE TRIGGER aerolinea_tr
AFTER UPDATE
ON ...
1
vote
1answer
137 views
2 errors: The multi-part identifier “inserted.name” could not be bound
I'm trying to create a trigger to update a contact's info in a repository when it's been changed.
CREATE TRIGGER contacts_f_tr
ON contacts_f
AFTER UPDATE
AS
BEGIN
---
---Update repository data
...
0
votes
0answers
352 views
“Batch update returned unexpected row count” - Hibernate, SQLServer TRIGGERS
I have a spring-hibernate application with a @OneToMany mapping between an object and history collection of the object's historical changes. The corresponding object_table to object_history_table is ...
0
votes
1answer
41 views
Query executes with no error but not in trigger
I am facing a strange problem in creating trigger in MS SQL.
I have a query that executes with out an error but when I place it within trigger body, it gives error
Invalid column name ...
0
votes
1answer
188 views
ON DELETE trigger in SQL Server 2008 affects more rows than intended
I have the following simplified DB model:
There are plans with jobs. Jobs contain the objectids of locations, but they are not explicitly associated with the table Location.
I have an ON DELETE ...
0
votes
2answers
265 views
SQL Server 2008 split, sort and merge value
I have a table in the following format (I'm using MS SQL Server 2008):
car_id | trace
1 1300275738;57.72588;11.84981;0.00026388888888888886;1300275793;57.72596;11.8529;0.001055...
The trace ...
2
votes
1answer
2k views
CREATE TRIGGER - SQL SERVER
A student is going to a school where he's going to pay a monthly value. That value will be (FatherSalary + MotherSalary)*0.05
I only started to study triggers yesterday, I made one but i got the ...
0
votes
1answer
357 views
sql server trigger help - same table update
I posted a similar question earlier - but can't seem to get a long enough response! Sorry if I shouldn't be posting again!
This is using SQL Server 2008. I have a table called invoice;
create table ...
1
vote
0answers
61 views
sql server trigger [duplicate]
Possible Duplicate:
sql server trigger help - same table update
I am using Microsoft SQL Server 2008. I have two tables credit and invoice.
The code for the credit table:
create table ...

