Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 8,761 total)

  • RE: Is it possible to limit Maximum Workspace Memory or the portion of it allocated to a single query?

    We have an issue whereby over-complex filters within queries generated by a report engine are resulting in wildly overestimated cardinality estimates.

    I see this often and capping the memory grants...

  • RE: Query

    drew.allen (11/14/2016)


    Isn't this essentially the same question that you had in Recursive CTE performance improvement. You received an answer to this question there.

    Drew

    Just wonder if the OP didn't understand...

  • RE: Help with a query runs forever but returns nothing.

    Luis Cazares (11/14/2016)


    Eirikur Eiriksson (11/14/2016)


    Can you post the actual execution plan, would make this a lot easier.

    ๐Ÿ˜Ž

    If the plan contains sensitive data then you can use SQL Sentry Plan Explorer...

  • RE: Help with a query runs forever but returns nothing.

    Can you post the actual execution plan, would make this a lot easier.

    ๐Ÿ˜Ž

    If the plan contains sensitive data then you can use SQL Sentry Plan Explorer to anonymize it before...

  • RE: Help with a query runs forever but returns nothing.

    Here is another option, no need to concatenate the key columns

    ๐Ÿ˜Ž

    INSERT INTO [addb20].[Target_MergeAMD4_WithData].[dbo].[ConfigOption]

    (

    [Active]

    , [ConfigOptionGUID]

    , [ConfigOptionTypePropertyId]

    ...

  • RE: linked ole objects in table

    gisles (11/14/2016)


    Yes, this is in all of them.

    Manipulating the CF files in T-SQL is not trivial, the internal format is a FAT format which can be slightly twisted to work...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (11/14/2016)


    AGGGGGHHHHHH!

    I don't know if I'm having a language barrier issue with this vendor rep or if this person is truly this clueless.

    VendorRep: Make sure to restore this copy...

  • RE: SQL complex join with One to Many relationships

    raymak (11/14/2016)


    Thank you. ๐Ÿ™‚

    You are very welcome.

    ๐Ÿ˜Ž

  • RE: sp_configure slow to apply

    adb2303 (11/14/2016)


    Hi,

    Thanks for the response.

    SQL Server version

    Microsoft SQL Server 2008 R2 (SP3) - 10.50.6220.0 (X64) Mar 19 2015 12:32:14 Copyright (c) Microsoft Corporation Enterprise Edition...

  • RE: sp_configure slow to apply

    adb2303 (11/11/2016)


    Hi,

    I have just upped the cost threshold for parallelism to 50 on two of our test servers:

    SP_CONFIGURE 'advanced', 1

    GO

    RECONFIGURE WITH OVERRIDE

    GO

    SP_CONFIGURE 'cost threshold for parallelism',50

    GO

    RECONFIGURE WITH OVERRIDE

    GO

    SP_CONFIGURE

    This took 4m33s...

  • RE: Stolen Server Memory and Database Cache Memory

    Jose Marcelo Dias de Oliveira (11/14/2016)


    Eirikur Eiriksson (11/12/2016)


    Jose Marcelo Dias de Oliveira (11/10/2016)


    Hi

    I have the same behavior in 2 SQL Servers where Stolen Server Memory and Database Cache Memory counters...

  • RE: Restore trans log(s) from vss snapshot-based backuo

    124420294 (11/14/2016)


    sql server 2016.

    if sql 2005 support transaction log roll forward, I think, it should be also supported for 2016.

    A VSS file backup is not the same as an...

  • RE: RBS folders are reaching 200GB

    hurricaneDBA (11/14/2016)


    Hi everyone

    I hope you're all doing great

    We've implemented SP 2013 using SQL server 2012 with file streaming enabled and RBS.

    Now we have over 35 databases with...

  • RE: MICROSOFT SQL SERVER LICENSE TERMS

    IT researcher (11/14/2016)


    As i said earlier "In the license terms under the โ€˜Scope of Licenseโ€™ there mentioned โ€œYou may not publish the software for others to copyโ€."

    Which is not...

  • RE: Find column values with Pattern

    Another thing to pay attention to is the cost of using COUNT, it implies that the whole table must be scanned and aggregated, much heavier on the database than using...

Viewing 15 posts - 2,731 through 2,745 (of 8,761 total)