Viewing 15 posts - 6,736 through 6,750 (of 7,472 total)
- did you take a look at locking ? maybe http://www.sqlservercentral.com/scripts/contributions/826.asp can help out.
- Maybe executing the sql with (nolock) hint will deliver sufficient data.
(be aware of uncommitted data...
January 26, 2005 at 6:53 am
case when yourcol between x and y then 'xy'
when yourcol between a ane b then 'ab'
else 'not between'
end
January 26, 2005 at 6:44 am
update yourtable
set yourcol = replace(replace(yourcol,'2','"'),'1','!') --
where yourcondition
Check out "replace" in books online
January 26, 2005 at 6:12 am
Contratulations Frank.
Must be at least 64-bit 8-way
Enjoy these...
January 25, 2005 at 4:49 am
- Is the schedule active ?
- who is job-owner ? (and is cmdshell open for non-sysadms (don't if not explicitly needed ! ) ?
- does the sqlagent service account have...
January 25, 2005 at 1:20 am
what's in de error-collection of bds after the bds.open ?
err.message, ...
January 21, 2005 at 3:19 am
Don't use the copy database wizard because it detaches the source-db for a while (and reattatches it).
You may want to consider using restore using UNC.
Restore database MyDb
from DISK = '\\myserver\disk$\msSQL\BACKUP\mybackup.BAK'
with...
January 21, 2005 at 3:16 am
No Idea.
check :
- windows event logs
- sqlserver logs
- sqlagent logs
January 21, 2005 at 3:11 am
That's why you 'll want to have your clustering keys as small as possible.
All your NCI's will be affected because they nolonger...
January 21, 2005 at 3:09 am
- can you post your restore statement ?
- can you post the execution report containing the error(s) ?
January 20, 2005 at 12:47 am
only sa can run jobs he/she does not own.
you might consider a workaround using alerts which launch the wanted job.
January 20, 2005 at 12:42 am
Are there other users in the db/tb when you run your test(s).
Because you are performing another tableaction
SELECT MIN(PremInstalmentDate)
FROM tblPremPolicyPremium
WHERE PremPoliID = PoliID
AND PremDeleted = 'N'
AND PremIncludeInTotal = 'Y'
GROUP BY PremPoliID
January 19, 2005 at 8:10 am
can you explain what's happening in step 1 of your package.
If it is fileaccess, your user Domain\sqladmin may not have access-authority to that file.
If you want to check it...
January 19, 2005 at 4:53 am
maybe this is a good starter
select Subsel.EMPLID, Subsel.EFFDT, sum( C.AMOUNT ) as TotAmt
from (select J1.EMPLID, J1.EFFDT
, isnull((select dateadd(ms,-3,min(J2.EFFDT) ) from PS_JOB J2 where...
January 19, 2005 at 4:41 am
Viewing 15 posts - 6,736 through 6,750 (of 7,472 total)