Forum Replies Created

Viewing 15 posts - 3,076 through 3,090 (of 7,164 total)

  • RE: Degree of parallelism in SQL Server

    Perry Whittle (9/24/2012)


    braju (9/24/2012)


    From what I have seen as reponses, I think we should set the MAXDOP to default to 0 and adjust cost threshold of parallelism if needed or...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS - Connection Problem when outputting to an Excel Binary Workfile (.xlsb)

    Look for ACEOLEDB.DLL on your machine. It should be in an Office14 folder in one location or another depending on whether you have Office installed or whether you installed the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: French characters into SQL Server

    Sorry I misunderstood the scenario. Try changing the input file encoding from UTF-16LE (what Microsoft calls "Unicode") to UTF-32 and see if passing that file works. It's a workaround but...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Agent service

    I have worked with Idera sqlDM, nagios & SCOM. It might be the most basic of monitoring tool functions, i.e. monitoring if a service is alive, so pretty much any...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Agent service

    I would recommend setting up monitoring from atmleast one other machine. You could use WMI to check the service status periodically and email if there is a problem. There are...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Created package on one server, how to use it in another server ?

    The short answer is yes, the settings in the configuration file will be used instead of the info hardcoded into the Connection Manager object.

    There is an order of precedence on...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: An Indexing Discussion

    GilaMonster (9/23/2012)


    opc.three (9/23/2012)


    In a heap, when an existing row is updated and that row no longer fits on the page where it lives a forwarding record is created to hold...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL ReTry Logic

    I could see that for restoring a snapshot in a production rollback scenario.

    To be fair and complete you have to be out of the DB to restore WITH REPLACE...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How frequently should an update stats job run

    Sapen (9/21/2012)


    Currently I am updating statistics on specific tables (identified them based on modified rows) daily at 2:00AM.

    Just curious, are you applying your own algortihm using sys.sysindexes.rowmodctr?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: An Indexing Discussion

    The tables sound like good candidates for havaing their non-clustered PK converted to a clustered PK.

    I'd like to expound on a couple points in your post.

    If the PK is turned...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL ReTry Logic

    Dave Ballantyne (9/23/2012)


    Done the same sort of thing, but when there are apps that fire continously then they can get the single user connection .

    Had to re-sort to pausing the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Data replication between view and table within same database

    You cannot replicate a regular view because in a regular view the data is not materialized. You can however replicate an indexed view for that same reason.

    It sounds like one...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL ReTry Logic

    This technique works for me. It guarantees success when there are apps are running with sysadmin-level permissions:

    USE YourDatabase;

    ALTER DATABASE YourDatabase SET SINGLE_USER WITH ROLLBACK IMMEDIATE; -- forcefully kills all user...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Degree of parallelism in SQL Server

    The disadvantages of setting Max Degree of Parallelism to 1 is that queries that would have benefited from executing with a parallel plan will not be able to and that...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Created package on one server, how to use it in another server ?

    You have numerous configuration management options in SSIS. Personally I like using XML Package Configuration files for this kind of work. When I deploy a package to 'dev' or am...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 3,076 through 3,090 (of 7,164 total)