Viewing 15 posts - 466 through 480 (of 484 total)
quote:
You can try to set your rowterminator to '"/n'.
Nice idea, Thomas. Although...
November 18, 2003 at 5:54 am
You could eliminate the 2nd query, by adding records to the recordset, then checking the identity column after the update:
Set rs = db.OpenRecordset("Select * from students_table WHERE 0=1"
rs.AddNew
rs("studentname") = "John"
rs.Update
rs.Filter...
November 10, 2003 at 11:08 am
MJ, just wanted to clarify your setup, just because I think I see a conflict of terms in your original description. If you are putting the files on a...
November 7, 2003 at 10:44 am
Also, don't forget to get any other security and hotfixes after SP3a. Check at http://www.microsoft.com/technet/security/current.asp
October 5, 2003 at 2:47 pm
I have done a similar type project where the web server is hosted at the ISP. But the client (and frankly, myself) did not want to put the database...
October 3, 2003 at 6:16 am
I had posted a question on this a short while ago ( http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=16009&FORUM_ID=65&CAT_ID=1&Topic_Title=Max+Memory+recommendation%3F&Forum_Title=Performance+Tuning ). I had seen a reference to an "official Microsoft recommendation" in Great Plains Installation eCourse...
October 3, 2003 at 4:53 am
I was thinking this was just a test to see how many people just pick random answers without reading the question.
September 23, 2003 at 9:57 am
Paul;
Does your file also contain text (alphanumeric) data? If so, and you converted the IBM EBCDIC characters to ASCII characters during the download (almost always automatically done), then your...
September 19, 2003 at 6:45 am
Based on your descriptions, it certainly sounds like indexes are not efficiently set. A suggestion to easily help define those indexes. Run the Profiler utility to capture all...
September 8, 2003 at 5:43 am
quote:
...Is there any possibility that DBCC is trying to fix some minor errors, and SQL Server changing to Single User Mode &...
July 30, 2003 at 6:46 am
To followup Andy's comment;
If in your database maintenance plan, you check "Check Database Integrity", and also check "Attempt to repair minor problems", the database will set into single-user mode....
July 25, 2003 at 5:55 am
quote:
My fault on the English - we haven't decided what to do just yet. Clearly if can't follow the article it's of...
July 21, 2003 at 2:19 pm
Also, there is a problem in SQL Server with identity column when recovering from crashes. This has existed in SQL Server since at least v4.2.
Suppose you have an identity...
July 13, 2003 at 10:40 pm
quote:
I do not agree. The order of columns in your table should never matter.
June 27, 2003 at 6:22 am
quote:
The only thing I'd question about using it in such a scenario is what would happen if the app was left open,...
February 23, 2003 at 11:26 am
Viewing 15 posts - 466 through 480 (of 484 total)