Viewing 15 posts - 6,766 through 6,780 (of 7,504 total)
can you post the DDL for the table and the view so we can see what might be goin wrong ?
January 31, 2005 at 2:09 pm
Don't ask for my picture, WWF may might just publish me as "endangered species" ![]()
My Girls are 40
...
January 26, 2005 at 7:16 am
- 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
Viewing 15 posts - 6,766 through 6,780 (of 7,504 total)