Viewing 15 posts - 271 through 285 (of 789 total)
Here's one method you could try:
SELECT ... /* various fields */
FROM PatientInfo
WHERE ... /* various parameters */
AND UserID IN (
SELECT DISTINCT...
September 18, 2003 at 5:44 pm
My opinions only....
1. Database Designer
Works with end users, business analysts and developers to create the logical schema. Might use tools like ERWin. Might use a pen and paper....
September 18, 2003 at 5:31 pm
Are the SPs separate job steps? If so, can you determine which of the steps has increased in time?
Sounds like a different query plan is being chosen, based on...
September 18, 2003 at 3:55 pm
Never realised you could put them all in one statement.
I learn something new every day.
Cheers,
- Mark
September 16, 2003 at 2:59 am
Check also that c1 is not subject to updates. If it is then all NC index entries are updated too.
Cheers,
- Mark
September 16, 2003 at 2:47 am
In QA do:
dbcc traceon(-1)
dbcc traceon (1204)
dbcc traceon (3605)
This should write deadlock info to the errorlog.
Cheers,
- Mark
September 16, 2003 at 2:44 am
Appears to be a database maintenance plan. Check for jobs called "Integrity Checks Job for DB Maintenance Plan...."
Cheers,
- Mark
September 15, 2003 at 9:11 pm
Just out of interest... any relavent errorlog messages generated for that database when you started sql?
Cheers,
- Mark
September 15, 2003 at 8:21 pm
Does the time coincide with the execution of any sql scheduled jobs?
...and, is it regular? eg. every hour exactly
Cheers,
- Mark
Edited by - mccork on 09/15/2003 8:17:44 PM
September 15, 2003 at 8:17 pm
Brian Knight wrote an excellent multi-part clustering article. Check it out, starting with http://www.sqlservercentral.com/columnists/bknight/clustering_a_sql_server_machine_.asp and then move on to the first of several step-by-step articles http://www.sqlservercentral.com/columnists/bknight/stepbystepclustering.asp
Cheers,
- Mark
September 15, 2003 at 5:11 pm
Maybe there's Windows scheduled task that kicks off every hour.
Failing that, it may be fired from another machine. You can run profiler, looking for DBCC events only, and include...
September 15, 2003 at 5:04 pm
I don't understand the problem.
12.1000 is 12.10
It's also 12.1 and 12.100 and 12.10000.
The (18,4) determines how it is represented when displayed.
Cheers,
- Mark
September 15, 2003 at 4:58 pm
Try:
restore database YourDBName with recovery
Cheers,
- Mark
September 15, 2003 at 12:40 am
Oh come on Phillip. Be a sport. No-one's going to use a "social" forum like....
Cheers,
- Mark
September 14, 2003 at 8:43 pm
...get their posting count...
Cheers,
- Mark
September 14, 2003 at 8:43 pm
Viewing 15 posts - 271 through 285 (of 789 total)