Viewing 15 posts - 6,601 through 6,615 (of 7,466 total)
in queryanalyser run :
restore headeronly FROM DISK = 'path\yourbackupfile.BAK'
I hope this helps.
May 23, 2005 at 4:59 am
I don't know of any executionpriority you can set, but you can set deadlock-priority.
set deadlock_priority low -- I wish to be the victim in case of deadlock !
May 20, 2005 at 12:40 am
Guess what : I found this litle article ...
The waittype and lastwaittype columns in the sysprocesses table in SQL Server 2000
available at http://support.microsoft.com/default.aspx?scid=kb;en-us;822101
May 18, 2005 at 12:47 am
how about :
select ft.fno as DocGestao,
,round(sum(fi.ecusto*fi.qtt),2) as ValorGestao
,ml.adoc as DocCTB
-- ,(select (case when sum(edeb)=0 then sum(ecre) else sum(-edeb) end)
-- from ml ml1 (nolock)
-- inner join ft ft1 (nolock)...
May 4, 2005 at 1:30 am
Thanks for the reply, but the thread is over 1 year old
The sp-recompiles is what we've worked on, as well as ram-extention.
We've...
May 4, 2005 at 12:28 am
I think you only need this :
SELECT
a.fieldname,
a.Code,
CASE a.fieldname
WHEN 'Thing1' then b.Thing1
WHEN 'Thing2' then b.Thing2
WHEN 'Thing3' then b.Thing3
ELSE 0
END As Description
FROM ATable a
left join Thing1...
April 29, 2005 at 7:50 am
if you can handle the bit typework you might consider using the replace sql-function.
check BOL.
-- use select for POC-test
-- later alter to update-statement
select myalfanumber, replace(replace(upper(myalfanumber),'A','') ,'B',''),.... as mynumber
from mytable
where...
April 29, 2005 at 12:56 am
As you might have found out, there is litle info regarding sysprocesses available on the web. (many using it, but none describing it)
So I fallback to sybase :
April 29, 2005 at 12:21 am
You could also use sysprocesses for a quick ref.
This is a system-table, NOT to be modified/updated by anyone but the system !!
But you...
April 28, 2005 at 12:14 am
I guess your reboot-policy comes from an NT-4 era
We only reboot if fixes are planned and installed or if our production-plant has a...
April 27, 2005 at 1:10 am
I've used PSTAT.exe from the Wk2 resource kit to capture the data,
then transfered the intercepted output to a central place
, imported them into SQL and ran a filterquery to...
April 25, 2005 at 7:27 am
print screen on a stone plate ??
I've got 50+ servers to monitor.
April 22, 2005 at 5:15 am
Thé big thing with any RDBMS (sqlserver/oracle/db2/...) is to work set-oriented. Once you get that in the fingers, things will work smoothly.
Maybe...
April 22, 2005 at 12:12 am
Let's hope your worktables are no #- or ##tables
These are only available within their own connection.
April 21, 2005 at 12:42 am
Viewing 15 posts - 6,601 through 6,615 (of 7,466 total)