Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 5,843 total)

  • RE: Help On Query

    For those using ROW_NUMBER, if you want users having 2 OR MORE roles, shouldn't the filter be rownum >= 2 instead of just rownum = 2?

  • RE: Sql Query

    Since you are on SQL 2012, new Windowing Functionality is available too. Here is a solution based on that. Note you may want to add in columns and/or...

  • RE: Offsite Backups

    opc.three (9/7/2013)


    I have a client with a mission critical SQL Server serving local network and VPN users that wants offsite database backups. Compressed, the database backup is about 80MB, not...

  • RE: Too Much Unused Space A Performance Issue?

    The only thing I can think of that might be a performance effect of this is having data be physically "far apart" on disks, leading to a few extra milliseconds...

  • RE: multithreaded insert

    james marriot (9/6/2013)


    Im aware of the usual way of getting a multi threaded/process insert by utilizing heaps or partitioned tables and multiple insert statements, but if inserting into a heap...

  • RE: Inplace Upgrade from SQL 2005 Cluster to SQL 2012 Cluster

    I personally STRONGLY recommend to my clients that they avoid in-place upgrades, ESPECIALLY on clusters and ESPECIALLY ESPECIALLY when skipping THREE versions. There's just sooo many ways and places...

  • RE: performance

    Koen Verbeeck (9/6/2013)


    TheSQLGuru (9/6/2013)


    Personally I would not use INTERSECT. It is a relatively new operator in SQL Server and thus could be exposed to some bugs and/or not have...

  • RE: Impact of trace flag 272 on SQL Server 2012 apart from disabling identity jump

    ghoshal.soumyadeb (9/5/2013)


    By saying "You will get behavior of 2008 R2" are you including all the behaviors or just the IDENTITY property?

    I'm not saying anything. That was just a quote...

  • RE: performance

    Personally I would not use INTERSECT. It is a relatively new operator in SQL Server and thus could be exposed to some bugs and/or not have all the efficiency...

  • RE: Suggest Datatype

    Actually, doesn't SSIS interrogate some amount of rows (configurable?) and have the ability to "suggest" data types for inputs when you are building out transforms?? I am pretty sure...

  • RE: Suggest Datatype

    Since you are on SQL 2012, I wonder if something in the new Data Quality Services stack can do what you need. No idea about that personally.

  • RE: Upgrading from SQL 2008 R2 to SQL 2012 R2

    I always recommend full install too. Upgrade-install doesn't give me a warm-and-fuzzy at all.

  • RE: Impact of trace flag 272 on SQL Server 2012 apart from disabling identity jump

    I doubt very much you will find any benchmarking or other documentation on this trace flag. It would seem to be a "mostly-unsupported/undocumented" TF. I doubt you have...

  • RE: There is insufficient system memory in resource pool 'internal' to run this query"

    Hi Sandy! I see that you are new to SSC.com forums. Welcome! Please note that we try to not post to old items.

  • RE: Creating scalar functions in tsql

    do NOT use a scalar UDF if it or the place you are using it does data access. Read my chapter in the SQL Server MVP Deep Dives 2...

Viewing 15 posts - 2,386 through 2,400 (of 5,843 total)