Forum Replies Created

Viewing 15 posts - 12,571 through 12,585 (of 49,557 total)

  • RE: sysobjects corruption

    Please run the following and post the full and unedited output

    DBCC CheckDB(<database name>) WITH NO_INFOMSGS, ALL_ERRORMSGS

  • RE: Server log error

    In my experience, the SAN admin almost always says there's nothing wrong even when the SAN is clearly, obviously and provably the problem.

  • RE: Server log error

    There's nothing magical about a SAN that means it's not the problem. In fact, it's very likely it is the SAN, a misconfigured SAN.

    Check the throughput you're getting from the...

  • RE: Are the posted questions getting worse?

    Chad Crawford (6/25/2013)


    Yikes. I often tell people, "I only know one language, but I'm not fluent". Now I have even more reason to do so.

    My ability with...

  • RE: Are the posted questions getting worse?

    No idea about Swahili, since it's not native to my neck of the world, but Zulu is correctly written as isiZulu when writing in the language, not Isizulu. It's similar...

  • RE: Placing a Development Database on the same SQL Server instance as the Production database

    Meet George Jetson (6/25/2013)


    I was able, finally, to get the client's IT to install SS 2008 R2 Express,

    SQL Server 2008 R2 Express is NOT the same thing as SQL...

  • RE: how to restore a stored procedure from a backup

    YEs, you can restore just the primary filegroup from the backup, even if it's the full database backup.

    Look up the RESTORE DATABASE syntax, you're looking for the FILEGROUP = option,...

  • RE: Why is my TLOG growing

    What you have there is near-impossible to interpret. It's executing a query that was prepared earlier with sp_prepexec (or maybe sp_prepare, can't recall details here). The "N'myapplication.POL_SUPRES_ISS_IND'" is simply a...

  • RE: Data corrupted, any advice?

    Not repairable in any way.

    Since you have no backup...

    Script all objects (some may fail)

    Export all data (some will likely fail)

    Recreate the database.

  • RE: Server log error

    You have slow IO requests. Check that the IO subsystem is not overloaded, try tuning queries to read less data.

  • RE: Performance Tuning for the procedure

    michal.lisinski (6/25/2013)


    2. Check size of data sets inserted to the temp tables, if they are small (few rows), use varaible table.

    Disagree there, table variables are not magically faster than temp...

  • RE: The database is not accessible (ObjectExplorer)

    Please post new questions in a new thread and give as much information example as possible, including exact error messages, anything unusual in the error log, etc.

  • RE: Are the posted questions getting worse?

    You shrunk a database? How could you???

    :hehe:

  • RE: Errors in SQL Server

    No, raiserror doesn't log to some other log file or system table. If the error is high enough severity or with the WITH LOG option, then it goes into the...

  • RE: non-correlated subquery failing to fail

    And this is why you should always, always, always qualify column names with the table name when you have subqueries around.

    This will fail.

    DELETE

    FROM dbo.DimCustomer_LLF AS DCust

    WHERE DCust.CustomerKey in (SELECT DISTINCT(CS.CustomerKey)...

Viewing 15 posts - 12,571 through 12,585 (of 49,557 total)