Viewing 6 posts - 1 through 6 (of 6 total)
you keep dropping col1 from your index for some reason..
another workaround for ineffective TOP will be rewriting queries as
Select ... from Server1.MyDatabase.LinkedServer.MyTable
(instead of dbo schema),...
May 4, 2015 at 10:08 am
you probably need to rewrite the query and remove "TOP" clause - it executed on local server, not remote, so you pulling entire resultset between boxes.
simplest way
Declare @MetricDate smalldatetime
Select...
May 3, 2015 at 11:56 am
many wanted to remove header from SQL Agent job step output file - all failed.
you can convert job step to CmdExec and call osql -o, or to Integration Services Package,...
May 3, 2015 at 5:20 am
kindly read up about linked server, LIKE '%,%' and EXISTS operators (previously mentioned MERGE will also work)
May 3, 2015 at 4:38 am
you need to parse search string and compose FTS query sting, no easy "replacements" here.
May 3, 2015 at 4:07 am
Viewing 6 posts - 1 through 6 (of 6 total)