Forum Replies Created

Viewing 15 posts - 196 through 210 (of 318 total)

  • RE: Slight Problem :(

    Without even a transaction log file backup to go with, which I am surprised your company doesn't at the very least maintain these, you are out of luck.

    Unless the user...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: How to restore a DB to a differenet SQL server

    Try something like the following:

    Use Master

    Alter Database zReports

    SET SINGLE_USER With ROLLBACK IMMEDIATE

    RESTORE DATABASE mydb FROM DISK = 'x:\backup\mydb.bak'

    WITH REPLACE

    GO

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Error when restoring: There is already an object named sysnsobjs in the database

    I am not 100% certain this will work as the master db contains all user information, but if you use command line restore with single user tag, you should be...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Error while copying Database..

    What version, more importantly what service pack are you utilizing? If SQL 2005 SP2, this was a bug fixed with SP3.

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: SQL Server 2005 for 64 bit version OS (Windows 7)

    No, there are three different versions of Developer edition. x86, 64-bit and 64-bitIA

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: disable primary key constraints in table

    ALTER TABLE InsertTableName DROP CONSTRAINT PK_Name

    To reenable it:

    ALTER TABLE InsertTableName ADD CONSTRAINT PK_Name PRIMARY KEY /* CLUSTERED */ (pk_column)

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: A nonrecoverable I/O error occurred on file

    Is this error occuring during a job or maintenance plan? Have you attempted to run the command via query?

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: SQL Server 2005 for 64 bit version OS (Windows 7)

    The main difference between 32-bit and 64-bit for Developer edition is the memory allocation or AWE switch is already enabled and you don't have the limitation like you do with...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Error: 602, Severity: 21, State: 30.

    Did you apply the cumulative update for SP2, we had the same issue when we did a migration a couple of months ago and just applied the cumulative update to...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Service Pack 3

    They don't tell you this anywhere, but you have to stop the IIS Admin Service as well as the World Wide Publishing Service. After that you can install SP3

    Good...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: IIS requirement for sql server installation

    Take a look at this link, it talks about 32-bit SQL on a 64-bit OS, but the IIS install link is included.

    http://msdn.microsoft.com/en-us/library/ms143293(SQL.90).aspx

    Good Luck

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Query Output in a text file

    Maybe I am misunderstanding your question, but to get the results from a query into a text file either execute the query by CTRL+SHIFT+F or change the setting via Query...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Install/move reporting service

    Yes, when you apply the SP it looks similar to an installation where you have all the available modules shown. Please make certain to check the SSRS module

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Install/move reporting service

    I am not a real fan of renaming a server after installing SQL, but if you have done this in the past you know what to watch for. As...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

  • RE: Install/move reporting service

    "Do you mean you install sql server first, then restore databases, rename the computer, and then when you install ssrs, you got the hang up?" - Follow the steps in...

    Chris Powell

    George: You're kidding.
    Elroy: Nope.
    George: Then lie to me and say you're kidding.

Viewing 15 posts - 196 through 210 (of 318 total)