Viewing 15 posts - 916 through 930 (of 992 total)
I have seen somewhere either in an article or a discussion thread on this site someone talking about "asynchronous sql execution"... Essentially they created a scheduled job using TSQL from...
June 22, 2005 at 6:53 am
I think you've done what you need for ports as far as I can remember... The tricky thing will be your choice of Windows/SQL authentication - you may well find...
June 21, 2005 at 2:45 am
You can have up to 16 copies of SQL Server, MSDE, Standard or Enterprise installed on a single machine, each with different instance names.
June 21, 2005 at 2:38 am
We have a doc management application that has ~700k files in the single folder accessed via FTP on NTFS... works a treat
One backup...
June 21, 2005 at 2:37 am
When you say you can't login with the ID, I assume that the ID you set up in SQL Server is the one that you are logged in to Windows...
June 21, 2005 at 2:34 am
Your first query
SELECT * FROM mainMenuTable ORDER BY mainMenuIndex ASC; (= Tablescan)
needs to scan the entire table to retrieve all data (hence Tablescan) - probably not a lot you can...
June 21, 2005 at 2:29 am
To bring things back on topic...
1. As Remi said, check to see if you have indices on all of your foreign keys that...
June 21, 2005 at 2:22 am
Look at the sp_who or sp_who2 (this one is undocumented but gives more information) stored procedures - they give a wealth of information about current activity in the database.
Also, you...
June 17, 2005 at 5:41 pm
Few points...
1. Try commenting out your delete clause and see if your variable is still empty - if so, then it is not the delete (I doubt the delete is...
June 17, 2005 at 5:36 pm
Was the database involved in replication?
Simple google search on your error message gives some good indications - if one of them works could you please post here in case anyone...
June 17, 2005 at 5:32 pm
What is the restore command that you are running? You should restore from the (typically) single file that is generated by the backup database/log commands. Do you have an .MDF...
June 17, 2005 at 5:27 pm
Good point - not all of us are in the US (I'm in Australia - we use dd/mm/yyyy)
Is there a way to change...
June 16, 2005 at 7:24 am
If you are able to, take a log backup of it after 8:40 (depending on the type of crash I suppose). Then you can do the restoration stopping at 8:39. If...
June 16, 2005 at 7:20 am
The from clause is quite neat - can be used in deletes as well with joins, etc - we had a post about it last week from memory.. Always something...
June 13, 2005 at 5:09 am
Try running SQL Profiler when executing your code. See what the ADO recordset is trying to tell SQL Server - I would assume that it is issuing an update statement...
June 13, 2005 at 5:07 am
Viewing 15 posts - 916 through 930 (of 992 total)