Viewing 15 posts - 1 through 15 (of 29 total)
That works well. Thanks.
Now when I add it to the actual query (I'd used a simplified query in my example), I get an error "The table 'Table_B'...
November 7, 2002 at 4:40 pm
Create table case(
case_number varchar(20),
open_date datetime,
closed_date datetime,
ra_date datetime)
Need to select all datarows where the greater of the closed_date and the ra_date is greater than a inputed parameter
November 7, 2002 at 3:51 pm
I have spent a lot of time trying to determine the locking architecture/logic for sql server and I am still no expert. From what I know, sql server is...
June 27, 2002 at 8:08 am
Are you using bcp? Do you have a lot of indexes that need to be built?
May 29, 2002 at 8:05 am
Deadlocks are usually caused when improper transaction locking is employed. Even if proper trans locking is used, blocks can occur. Ultimately, you will need to find the root...
May 10, 2002 at 3:05 pm
I have seen a problem with profiler but nothing with em.
May 10, 2002 at 2:58 pm
uninstall and reinstall making sure that if you only want to install client tools, you make sure that ent man is selected. If you are installing the full server...
May 6, 2002 at 3:36 pm
try searching for isqlw.exe. In the same folder where this is installed, you will find enterprise manager. You can then create shortcuts or add them to your program...
May 6, 2002 at 1:46 pm
From my experience, a table and its indexes should be on a single filegroup with multiple files. Heavily used tables should be on different filegroups and possibly on different...
May 6, 2002 at 9:57 am
From bol:
SET ARITHABORT must be ON when creating or manipulating indexes on computed columns or indexed views. If these are two settings that you need to be OFF, set up...
May 6, 2002 at 9:51 am
Do you have a lot of alerts set up or are the alerts different between your servers?
May 2, 2002 at 10:57 am
Is the app locking or are there actual db locks? You can run sp_lock while they run their processes to see.
May 2, 2002 at 10:53 am
I gained significant performance improvements by doing the following. I set up a mirrored d drive and a RAID 5 E drive(c was reserved for OS) They have...
May 2, 2002 at 10:44 am
I would agree that another gig is warrented.
May 2, 2002 at 10:37 am
You can dynamically configure minimum RAM in server properties. Is that what you meant by working set size?
May 2, 2002 at 10:35 am
Viewing 15 posts - 1 through 15 (of 29 total)