Forum Replies Created

Viewing 15 posts - 3,526 through 3,540 (of 7,168 total)

  • RE: Inserting fails when importing flat file to SQL Server

    Looks like a data conversion error. Can you confirm there are no lines in the file where that field is empty? You may want to change your derived column expression...

  • RE: How to configure Sql Server Agent?

    george sibbald (7/20/2012)


    You have SQL2008R2 so you get database backup compression with the product

    run commands

    sp_configure 'backup compression',1

    reconfigure

    to enable it.

    the just set up a maintenance plan to do your backups,...

  • RE: Delete Agent Job Error

    If its a job linked to a Maintenance Plan are yountrying to delete the job from SQL Agent directly, or within the Maintenance Plan in the 'scheduling' section?

  • RE: index fill-factor

    Fragmentation over time.

  • RE: Cut down Updation time 4 Updating 3 Lacs record's 10 columns with different-2 functions

    Scalar-valued User-defined Functions (sUDF) in SQL Server are known to cause performance problems, especially when they are used in a way in which it sounds like they are being used...

  • RE: index fill-factor

    Page splits/sec, at least the server metric, not sure how you calculated it using fn_dblog, counts a new page allocation at the end of the index as a page split...

  • RE: GhostCleanup not working SQL 2005 Standard (9.0.5266)

    Is the hardware equivalent? To Richard's point this one instance may simply not be keeping up.

    Another slightly related train of thought, do you have index maintenenace running on all the...

  • RE: DBCC Hangs

    GilaMonster (7/20/2012)


    opc.three (7/20/2012)


    If dbi_dbccFlags = 1 then it has never run clean.

    That just tells you whether data purity checks have ever been run and return clean, not if CheckDB has....

  • RE: DBCC Hangs

    Stamey (7/20/2012)


    The waits I have are PageIOLatch_SH and CXPacket, on multiple instances of the command "DBCC Table Check". DM_Exec_Requests show the extact query is being: "DECLARE @BlobEater VARBINARY(8000) SELECT...

  • RE: GhostCleanup not working SQL 2005 Standard (9.0.5266)

    Please confirm you are on build 9.0.5266 on all instances.

    Are the results of this the same on all instances?

    DBCC TRACESTATUS(-1);

  • RE: send email from standard edition

    I think that particular doc is wrong. Too hard to believe they would take that away from that edition/bitness only so I looked it up. There are conflicts all over...

  • RE: Data transfer solution

    Steve is right about backups from the source being your primary line of HA. Copying the fulls and any tran log backups somewhere as they are taken is critical no...

  • RE: DBCC Hangs

    What options are you running CHECKDB with? Can you provide the actual command issued?

  • RE: Field Sizes in Staging database : all varchar(2000)?

    lokeshvij (7/19/2012)


    Short and simple answer:

    If your flat file is fixed width (delimited) use CHAR data type else use VARCHAR

    I am not sure I agree with that. What if your fixed-width...

  • RE: Cannot defrag indexes

    pooyan_pdm (7/18/2012)


    You're not the only one here with some years of experience here!! I've been doing this for 7 years . can just instead of repeating your claim give a...

Viewing 15 posts - 3,526 through 3,540 (of 7,168 total)