Forum Replies Created

Viewing 15 posts - 6,046 through 6,060 (of 6,104 total)

  • RE: @@ROWCOUNT problem

    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

  • RE: Selecting From Tree/recursive style Table

    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

  • RE: DATABSE DESIGN!!!!

    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

  • RE: Autoloader Tape Drives and SQL 7

    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

  • RE: Create database from SQL script

    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

  • RE: Triggers in SQL Server 7.0 and 2000 - The Common Ground

    What was the error you received?

    K. Brian Kelley

    bk@warpdrivedesign.org

    K. Brian Kelley
    @kbriankelley

  • RE: Triggers in SQL Server 7.0 and 2000 - The Common Ground

    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

  • RE: com+ timeout problem?

    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

  • RE: What's a DBA

    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

  • RE: SQL 2000 Administration Exam

    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

  • RE: deny alter table priv - how?

    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

  • RE: DSN settings for ODBC connection to SQL 7 Server

    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

  • RE: DSN settings for ODBC connection to SQL 7 Server

    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

  • RE: How to display all user tables in a database

    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

  • RE: DSN settings for ODBC connection to SQL 7 Server

    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

Viewing 15 posts - 6,046 through 6,060 (of 6,104 total)