Viewing 15 posts - 226 through 240 (of 398 total)
Check on your source db (where mdf/ldf from).
If necessary, add these views (it should have if created from msdb).
April 2, 2004 at 7:55 am
Many factors effect estimated execution time, like cache hit rate, io speed, network throughput.
You do have EstimateCPU by turn on showplay_all.
April 2, 2004 at 7:47 am
should be showplan_all
April 2, 2004 at 7:47 am
DBCC SQLPERF ( LOGSPACE )
find out how empty it is.
April 2, 2004 at 7:40 am
fncSplitAgentBalance returns table which does not match scalar requirement in select statement.
One way to tackle the problem.
cursor through AsValuation, get ValuationAmount into @variable,
call fncSplitAgentBalance (2, @variable)
get result (select or...
April 2, 2004 at 7:33 am
winword insert Symbols is one place
April 2, 2004 at 7:13 am
information_schema.tables is a view in master (not sure in sql7).
Check on sp_helptext [information_schema.tables] to find it out.
April 2, 2004 at 6:57 am
nchar(unicode)
select nchar(0x2265)
results: =
April 2, 2004 at 6:49 am
Try to avoid the duplicated key.
insert into table
select ---- from insertTable
where not exists(select * from table where key = insertTable.key)
April 2, 2004 at 6:01 am
what is the value of print @servererror
when Server: Msg 17, Level 16, State 1, Line 1 happend?
April 2, 2004 at 5:56 am
Article PSS ID306212 describes the case.
It has basic guide for troubleshooting linked server error 7391.
April 2, 2004 at 5:13 am
Compare execution plans between correct and not correct may help.
April 2, 2004 at 5:05 am
sysdepends is a system table to look up.
Once find out all the objects, use dts to copy.
April 2, 2004 at 4:51 am
Try share the folder, then put the share on network (make it D drive) using net use.
March 31, 2004 at 4:38 pm
Viewing 15 posts - 226 through 240 (of 398 total)