Viewing 15 posts - 2,461 through 2,475 (of 5,103 total)
hehe good! point sushila
but I usually assume that to be a software architect you should be good. Apparently I am wrong
November 30, 2005 at 2:09 pm
And they call themselves "Architects" ...
Would they preffer dynamic SQL ?
You can still send the batch in one roundtrip but SP is...
November 30, 2005 at 1:44 pm
The usual way is to create a function to concatenate the output and then
apply it to the source table. This is a lot better handled in the client side but if you...
November 30, 2005 at 1:38 pm
Migel,
I have already adviced you against dynamically creating triggers on the flight on that same thread you posted above. ![]()
If you still insist I...
November 30, 2005 at 1:23 pm
because you are using two distinct actions 'update' and 'insert' you will need to have separated statements at least until SQL Server implement Oracle UPSERT or IBM Merge
November 30, 2005 at 12:54 pm
1. are you sure the DATA is the same?
2. Can you post the query ?
November 30, 2005 at 12:50 pm
All I can say is what Scott already warn you about. You are the only one who can determine how much is going on on your system. You are the...
November 30, 2005 at 12:40 pm
I am pretty sure that there is a set based approach to solve your problem but I don't understad clearly what is the final outcome that you need. Based on...
November 29, 2005 at 2:39 pm
if you don't or can't use triggers but can shed some $$ have a look at idera SQL Compliance Manager
and if you...
November 29, 2005 at 1:29 pm
Try if at all possible not to call a web service from TSQL and it is even worse from a trigger!!
Just my $0.02
November 25, 2005 at 12:27 pm
There are several way to do this, here goes one:
create table x
(
validation char(10) not null,
validFrom datetime not null,
validTo datetime not null
)
create function dbo.IsRangeValid ( @s-2 datetime, @e datetime)
returns int
as
begin
declare...
November 25, 2005 at 12:23 pm
Viewing 15 posts - 2,461 through 2,475 (of 5,103 total)