Forum Replies Created

Viewing 15 posts - 646 through 660 (of 2,463 total)

  • RE: Maintaince paln jobs failed

    Is this a existing exec plan OR you created new one ?

  • RE: SQL Server consuming 90% Memory

    jitendra.padhiyar (12/24/2012)


    I think AWE will help me, but i am not sure whether it will be in effect without restarting sql server. Please guide me how can I release memory...

  • RE: Finding a quote in a string

    vinu512 (12/24/2012)


    Lets drink then :

    Select Char(34) + Char(67) + Char(72) + Char(69) + Char(69) + Char(82) + Char(83)+ ' ' + Char(68) + Char(87) + Char(65) + Char(73) + Char(78)...

  • RE: Retrieve results from table with latest timestamp

    Nidhi G (12/24/2012)


    How do I delete one entry then?

    this query will help you to remove duplicates

    delete t from

    (

    select ROW_NUMBER() over (partition by Id order by Id...

  • RE: big table insert advice

    Eric M Russell (12/25/2012)


    The reason why SELECT INTO <new table> is faster than INSERT INTO <existing table> is because SELECT INTO doesn't transaction log the data pages being inserted. In...

  • RE: Index reorg VS rebuild, round 1

    zi (12/23/2012)


    Kindly,what should I do to know this percentetge for the Database not for a certain table ?

    this is used for index maintenance. need for details .... we need...

  • RE: big table insert advice

    sqlsurfer11 (12/23/2012)


    Do I drop the indexes and the primary key and then insert data and add them back? .

    see i am not in favour of diasble the index (clus...

  • RE: Huge Index growth

    SQLSACT (12/18/2012)


    I have confirmed with the App team that it is to be expected for this time and I can expect even more growth

    if this is expected and confirmed...

  • RE: Partitioning Error

    GilaMonster (12/21/2012)


    What does the error message say you are missing?

    what i can get from error is testtable_archive data is "falling out of range" from partition 1 but...

  • RE: sql server 2008 service account queries

    chewychewy (12/21/2012)


    I don't understand this. since i specify mssql_agent and mssql_engine as service account, why doesn't the 2 have sysadmin privileges?

    What i can understand here is that u...

  • RE: Shall i create temp tables in production

    RK2012 (12/21/2012)


    Shall i create temp tables in production ?

    What kind of ?

    physical user table which you are going to use to store data temporaraliy?

    or #tmp or ##tmp...

  • RE: Partitioning Error

    GilaMonster (12/21/2012)


    That's what your partition function says.

    what steps i followed .

    1 I creaed a table TestTable_Archive (NOn partitioned table )

    2) then i moved data from testtable by...

  • RE: Tuning a query help

    Bhuvnesh (12/20/2012)


    Sean Lange (12/20/2012)


    pr.price <> 9999.99

    Try making this a SARGable predicate by removing the <> and replacing with > OR <

    pr.price < 9999.99 OR pr.price > 9999.99

    new learning for...

  • RE: Partitioning Error

    GilaMonster (12/20/2012)


    You specified the partition ranges yourself.

    CREATE PARTITION FUNCTION PartitionDB_PartitionRange (INT)

    AS RANGE LEFT FOR VALUES (500,1000,2500);

    So here partition 1 means "Less than 500" ?

Viewing 15 posts - 646 through 660 (of 2,463 total)