Forum: MS SQL Nov 6th, 2009 |
| Replies: 2 Views: 582 Hi again!
If you're using the same connection string that created the database to send the create table commands, remember there's no database specified on that connection. Once you've created... |
Forum: MS SQL Jun 15th, 2004 |
| Replies: 2 Views: 7,731 You can write a trigger that fires on both insert and update:
CREATE TRIGGER <trigger_name>
ON <table_name>
FOR INSERT, UPDATE
AS
<trigger_body>
Here's the T-SQL reference page:... |