Viewing 15 posts - 16,426 through 16,440 (of 18,926 total)
Maybe you can simply create a linked server. Then an instead of insert trigger would do this :
insert into LinkedServer.DbName.owner.Table (col1, col2, coln) Select col1, col2, coln from dbo.Inserted
June 21, 2005 at 1:52 pm
First time I read that... I'll see what others have to say about this.
June 21, 2005 at 1:46 pm
You don't even my adress... you could try to get your lies together before telling them
.
June 21, 2005 at 1:42 pm
AS I said, one of so many
.
How's that coin tossing coming Sushila??
June 21, 2005 at 1:36 pm
If it is recreated or changed, then yes. I've never heard that about DBCC REINDEX.
June 21, 2005 at 1:34 pm
HTH..
Now don't go deleting the Model db... You actually need this one (just in case it's actually doable without a warning).
June 21, 2005 at 1:33 pm
Just on a final note, pubs and northwind are there only for demo and testing purposes. But if you don't need them, you're better off deleting them from the...
June 21, 2005 at 1:28 pm
Top n from X rank (only one of so many ways)
/*
Ivica Masar
*/
USE pubs
DECLARE @var1 VARCHAR(12)
DECLARE @var2 VARCHAR(30)
SET ROWCOUNT 17
SELECT @var1 = au_id, @var2 = au_lname FROM authors ORDER BY au_lname,...
June 21, 2005 at 1:26 pm
It's not obvious but it's there :
in insert / insert (description)
sorry for the french version but I don't ahve the books in english :
INSERT [ INTO]
...
June 21, 2005 at 1:24 pm
Any reason why the record is not directly inserted in its final destination?
June 21, 2005 at 1:18 pm
What error message are you getting when trying to remove it?
If you are speaking about reasons not to do it, then there's none... actually it's a best practice to remove...
June 21, 2005 at 1:17 pm
Select max(CrDate) as SecondMax from dbo.SysObjects where CrDate not in (Select max(CrDate) from dbo.SysObjects)
June 21, 2005 at 1:14 pm
Viewing 15 posts - 16,426 through 16,440 (of 18,926 total)