Viewing 15 posts - 1,951 through 1,965 (of 2,062 total)
I would see the book online for that topic.
If there was a large transaction going on ( like altering a table in enterprise manager) it will be rolled back (...
October 5, 2005 at 1:42 pm
1)Is there any application active on the server except Windows 2003 and sql server? (Antivirus, IIS,...)
2) Ms full search is enabled?
October 5, 2005 at 1:35 pm
1) Does it have a lot of recovering (rolling forward transactions) to do (see sql server logs)
2) It might be because of the tempdb is growing to its initial size
3) Anything...
October 5, 2005 at 1:12 pm
I wouldn't expect any problems leaving compatibility at 80, because there aren't major differences between sql server 7 and sql server 2000.
In 2000 they added user defined functions,changable collations and better...
October 5, 2005 at 1:07 pm
1)if you use awe, you need to have a hotfix:
http://support.microsoft.com/default.aspx?kbid=899761
2) some other discussions on SP4
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=182669&p=2
October 5, 2005 at 1:02 pm
1) Are you using linked tables? If you, was the password saved when making them
2) Are you using DSN-less connections?
see http://www.connectionstrings.com/ for a list of connectionstrings.
3)You shouldn't use sa for...
October 4, 2005 at 4:33 am
Thanks for pointing that out.
October 1, 2005 at 7:09 am
Very likely.
Is the script holding locks during its executions?
Any cursors?
September 30, 2005 at 1:11 pm
Use a left join instead of an inner join.
SELECT JPT.JobPosting_ID,
ISNULL(MADT.ApplicationsReceived,0),
JPT.Job_Code,
JPT.Job_Title,
JPT.Job_Posting_Date,
JPT.Job_Location_Type,
JPT.Job_Location
FROM
Job_Posting_Table JPT
LEFT JOIN /*jobpostings can be without madt, ApplicationsReceived will be null then*/
(
SELECT JobPosting_ID, COUNT(*) ApplicationsReceived
FROM
Mgmt_App_Detail_Table
GROUP BY JobPosting_ID) MADT
ON
JPT.JobPosting_ID...
September 30, 2005 at 1:07 pm
unique index:
pro: speed up selects,DRI
cons: slows updates, deletes, inserts as the index needs to be maintained, space used
use : mostly if the fields are frequently searched upon
unique constraint:
pro: still maintains uniqueness, doesn't...
September 30, 2005 at 12:50 pm
If you are not using the 64 bit versions of w3k & sql 2000, you have to use the /PAE boot switch and set the memory for sql server (fixed)...
September 30, 2005 at 12:40 pm
My understanding was that if someone reads a row in the database then this row is locked for the duration of the read and that if someone tries to update...
September 30, 2005 at 3:24 am
It could be that the default database for the ASP was changed.
September 30, 2005 at 3:17 am
Like is faster since it can use indexes. (with the wildcard at the right)
Left is applied to all records. (no index)
September 29, 2005 at 3:41 pm
Viewing 15 posts - 1,951 through 1,965 (of 2,062 total)