Forum Replies Created

Viewing 15 posts - 2,491 through 2,505 (of 2,904 total)

  • RE: SqlServerCentral.com... The Book?

    The cross-reference to authors isn't such a big deal to me. However, I am a 'nit-picker' when it comes to typos. I've thrown out books because of too many typos....

  • RE: whether sql server agent can run in WINDOWS98?

    What do you mean 'can sql server agent run in Windows98'?

    SQL Server Agent is part of any SQL Server install. So if you can install SQL Server, then the Agent...

  • RE: Moving database file to different hard drive

    Shouldn't cause you any problems. But use MOVE instead of COPY.

    I've done the same thing with a 200+ GB database. You don't even have to stop and restart services. In...

  • RE: big bonus for answering on-the-day

    I like to see the answer regardless of whether I answered or not. Some days I know that I don't have a clue as to what the correct answer is;...

  • RE: Do you allow developer to access Production Server

    Here's a unique situation, I'm the DBA and my developer has limited rights to the database.

    What's unique about that? I'm both. I created two LOGINs, one for my position as...

  • RE: Database starting up

    Use Enterprise Manager, drill down to the database, right click on the database, select Properties, go to the Options tab.

    Is Auto-Close checked or unchecked?

    It should be UNCHECKED.

    If it's checked, then...

  • RE: SqlServerCentral.com... The Book?

    Something to consider for future books (and I hope there will be more books)...

    It would have been nice to have each new article start at the top of a page....

  • RE: SqlServerCentral.com... The Book?

    I got my book! Thank you very much.

    One interesting thing I've noticed.

    I have printed several scripts, etc. for my own use over the past year. Guess what? Almost every single...

  • RE: Newbie SQL connection question

    When you are using a trusted connection (Windows Authentication), your LOGIN and PASSWORD MUST be the same on both the SQL Server and the client machine/application.

    -SQLBill

  • RE: Database Offline

    Are you seeing any errors in the SQL Error Logs? How about the Windows Event Logs?

    You might have Auto-Close turned on. Use Enterprise Manager, drill down to the database, right...

  • RE: julian day conversion in SQL

    If they are only the day of the year, how do you know which year they are for?

    For example...Julian date 060 is March 1st ONLY three years out of four....

  • RE: Revoke/Deny permissions on Master and MSDB?

    Thanks for the responses. I think I'm going to have to scrounge for a server and build it as a test bed. Then I'll be able to install SQL Server...

  • RE: Memory not releasing in sql server 2000 sp3

    Okay, I found it....

    refer to the Books OnLine for SP_CONFIGURE.

    some of the Memory Options are:

    min server memory

    max server memory

    -SQLBill

  • RE: Memory not releasing in sql server 2000 sp3

    What you are noticing is by design. MS SQL Server is designed to grab as much memory as it needs. Then, because it needed it once, it might need it...

  • RE: Retrieve Last Record

    SELECT MAX(myid)

    FROM mytable

    Replace myid with whatever column name is the ID column and replace mytable with the proper table name.

    -SQLBill

Viewing 15 posts - 2,491 through 2,505 (of 2,904 total)