Viewing 15 posts - 6,046 through 6,060 (of 6,104 total)
Can you post a small sample of your code? Generally there shouldn't be any reason .EOF would fail unless the connection isn't getting opened and/or the recordset isn't getting...
K. Brian Kelley
@kbriankelley
August 5, 2001 at 10:22 pm
Books Online does the second method that Andy speaks of (hierarchical information under the Index tab), by building a temporary table and interating up the relationship chain. I've done...
K. Brian Kelley
@kbriankelley
August 3, 2001 at 11:33 pm
You might have your friend try the Fitch & Mathers Stocks project. It was a project that Vertigo Software went through to demonstrate the Windows DNA. Included...
K. Brian Kelley
@kbriankelley
August 2, 2001 at 9:32 pm
If you've got the space, you could write the backup to disk, move it over, then restore it. Quite a few of us have our SQL Server backups being...
K. Brian Kelley
@kbriankelley
August 2, 2001 at 2:48 pm
Andy makes a good point. Pages are 8KB in SQL Server 7 to take advantage of the I/O from the OS perspective, an improvement over SQL 6.5's 2K pages....
K. Brian Kelley
@kbriankelley
August 2, 2001 at 2:45 pm
August 2, 2001 at 2:31 pm
quote:
The article on Triggers did not mention that the Trigger is fired only one timer per DML statement - Insert, Update, or...
K. Brian Kelley
@kbriankelley
July 31, 2001 at 2:21 pm
You've ascertained that the SQL Server seems to be executing the query just fine.
By standing up something like NetMon or some similar network tool, you can tell whether or not...
K. Brian Kelley
@kbriankelley
July 29, 2001 at 11:48 pm
Steve covered a lot of good stuff, I've only got a little to add.
One of the best things you can do as an undergrad is excel to the point where...
K. Brian Kelley
@kbriankelley
July 27, 2001 at 9:13 pm
Try http://www.cramsession.com for a good study guide of what you need to know. I think they also have a signup list for a question of the day. There...
K. Brian Kelley
@kbriankelley
July 27, 2001 at 8:43 pm
Our change control allows developers to build and modify tables in development (if they have the expertise), but once we are ready to move to QA or production, the database...
K. Brian Kelley
@kbriankelley
July 26, 2001 at 10:34 am
If you're using a file DSN, you can add the following lines to have it connect automatically using a SQL Server login and avoid the prompt:
UID=<username>
PWD=<password>
If you're using a User...
K. Brian Kelley
@kbriankelley
July 26, 2001 at 10:17 am
What Andy posted is what I was thinking about when I first asked the question about standard SQL logins.
Is there some limitation as to why you can't use...
K. Brian Kelley
@kbriankelley
July 25, 2001 at 10:12 pm
There is a view and table you can use.
For all tables (and views) you as a user has access to:
SELECT * FROM INFORMATION_SCHEMA.Tables
For all user table:
SELECT [name] FROM sysobjects WHERE...
K. Brian Kelley
@kbriankelley
July 25, 2001 at 5:29 pm
Here's a question: will each user have their own login or are you planning on a single login to access the SQL Server from the workstation? If it's a...
K. Brian Kelley
@kbriankelley
July 24, 2001 at 4:46 pm
Viewing 15 posts - 6,046 through 6,060 (of 6,104 total)