Viewing 7 posts - 1 through 7 (of 7 total)
Check out openquery() to access data on linked servers. It will return only the results of the query after processing the query on the remote server.
March 7, 2008 at 7:09 am
From a recent experience we faced both issues, old servers and less than optimized coding. As we scaled larger, the issues with providing reliable and timely service escalated to the...
August 18, 2007 at 8:37 am
To access large remote objects, you should check out the openquery() options for data access to linked servers. It can often provide better performance by executing the query on the...
June 18, 2007 at 7:14 am
Only trying to point out a couple of concepts I haven't seen used much.
The function parsename and update on insert trigger inner joined to the inserted table are simple ways...
April 27, 2005 at 3:30 pm
As long as the [id] is unique/primarykey the inner join should update only those records in the inserted table that have just been inserted into the master table.
April 27, 2005 at 1:58 pm
Why not try the update with concept like this ?
UPDATE SMS SET
sms.Part1 = REPLACE( PARSENAME( REPLACE( REPLACE( i.Message, CHAR(46), CHAR(124)), CHAR(44), CHAR(46)), 4), CHAR(124), CHAR(46)),
sms.Part2 =...
April 27, 2005 at 1:18 pm
Check out the Parsename function. If you always have four pieces of data they can be retrieved by replacing the delimiter with a "."
parsename(replace(fieldname,',','.'),4)
parsename(replace(fieldname,',','.'),3)
parsename(replace(fieldname,',','.'),2)
parsename(replace(fieldname,',','.'),1)
not the intended use of the...
April 26, 2005 at 1:25 pm
Viewing 7 posts - 1 through 7 (of 7 total)