Viewing 15 posts - 6,721 through 6,735 (of 7,466 total)
If you have reinstalled exactly to the situation like before the crash, then you can just copy all mdf, ldf, ndf files (also master and msdb if you have kept...
February 2, 2005 at 12:18 am
- Logical dataconsistancy is a user problem.
- Physical dataconsistancy is a sqlserver problem ! This means a transaction is OK or it must...
February 1, 2005 at 8:00 am
Is this executed on a sql2000 sp3a multiproc box ?
If yes : did you install the hotfix for count(*) ?
Microsoft Knowledge Base article number Q814509
"FIX: A Parallel Query with a...
February 1, 2005 at 12:18 am
No, because then you would have inconsistend data !
February 1, 2005 at 12:12 am
keep in mind the security restrictions for job-alters. Don't run your app with sa-permissions!
declare @NewDate as int
declare @NewTime as integer
declare @dtNewTime as datetime
-- wait for 45 minutes
set @dtNewTime = dateadd(mi,45,getdate())
select...
February 1, 2005 at 12:08 am
did you create a full-text-index ?
January 31, 2005 at 2:20 pm
- Are your stats up to date ? (can you execute sp_updatestats / dbcc updateusage )
- I'd start off with all indexes which have a minor filter ratio (cardinality).
- you...
January 31, 2005 at 2:15 pm
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
Viewing 15 posts - 6,721 through 6,735 (of 7,466 total)