Click here to Skip to main content
15,887,966 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have an MSSQL Server 2008 Database.
There are some tables in my Database like below :
table1, table2, table3, ....
each table has a NVARCHAR(50) field (Name)
Now, I wanna change the strings that each sql query inserts in this field
e.g :
We have a query that wanna insert "Sample Text" in Name field.
I wanna change it to "Sample Name" with a SQL Trigger

Is it Possible with sql triggers ? if so, How? I'm naive in T-SQL
Is there a better way to do it with SQL Server ?
Posted

Yes - Triggers can do this ...

If the clients are talking to the DB with stored procedures, just changed the SP! If they're not using SPs, then this is only the start of a lot of pain

Have a look at An Introduction to Triggers[^]

On inserts, the triggers get a table called inserted - just modify that table as you want
 
Share this answer
 
Hi ,
Check this it has same problem
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=152059[^]
Best Regards
M.Mitwalli
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900