Forum Replies Created

Viewing 15 posts - 2,011 through 2,025 (of 6,035 total)

  • RE: Wow. Just Wow

    Just doing a Google search on filetype:mdf turns up a lot of hits. Some of them are references to NorthWind or AdventureWorks, but others it's not clear. I havn't tried...

  • RE: Difference between Objtype: Adhoc Vs Prepared.

    Tac11 (11/18/2016)


    Hi experts,

    Can someone please explain to me in simple English with each examples, different between Adhoc query and prepared query from sys.dm_exec_cached_plans.

    Thanks.

    A prepared query is paramaterized and can be...

  • RE: Share the Interesting Work

    Sadly, in most IT shops it's the application developers to do most of the "interesting" database development work, and even the most senior members of the DBA team perform post-deployment...

  • RE: database redesign

    As a start, you can combine sp_MsForEachDB with a query against INFORMATION_SCHEMA or SYS views.

    For example:

    -- Search for all stored procedures and views that include a keyword in their definition:

    exec...

  • RE: Stored Procedure that uses a parameter in a WHERE x IN(@param1)

    Budd (11/18/2016)


    PLEASE tell me what needs to be done to make something like this work?

    DECLARE @PARAM1 VARCHAR(2000) = 'Tom','JOE','BUDD','TIM' --< Obviously this wont work

    Select name from employees...

  • RE: A Joke Come True

    David.Poole (11/17/2016)


    ...

    I'd be curious as to whether Microsoft will eventually do a Linux version of SDIS/RS/AS or let those quietly die.

    I doubt Microsoft would let the ETL/Integration and BI components...

  • RE: A Joke Come True

    ZZartin (11/17/2016)


    ...

    I happen to really like the windows 10 UI, it's a nice blend of the old windows UI with the better elements of the metro UI available in a...

  • RE: Benefits of SQL 2014/2016 over 2005 ??

    While the original approach of excluding "enterprise" features from Standard Edition was to encourage folks to splurge on the Enterprise Edition license, as we see now, including these features in...

  • RE: Multiple Joins on Fact Table

    In terms of the Kimball methodology of star-schema modeling, I believe this would be an example of a "role playing dimension".

  • RE: GET Counts for insert,update,delete

    For what it's worth, the @@ROWCOUNT system variable contains the number of rows affected by the immediately preceeding DML operation.

  • RE: SQL Server 2016 is Just Faster

    Gary Varga (11/17/2016)


    It does appear that the Azure first policy is certainly bearing the fruits of their labours.

    What is the first policy?

  • RE: A Joke Come True

    Especially for lower tier servers (ie: 4 CPU / 8 GB memory), or instances where the database engine is the only service running, it's hard to justify the OS memory...

  • RE: Computed Column in optimizing query returning large data

    comic_rage (11/16/2016)


    was able to improve the query by moving the isnull to the select and adding the column to a filtered index. Was able to reduce query time from 9+...

  • RE: Computed Column in optimizing query returning large data

    comic_rage (11/16/2016)


    Hi,

    I have the following query that is returning 1.6 M rows and about 300 columns. I can't change this factor. Here is the current

    query

    select Column1 ... Column290

    from dob.table1

    where...

  • RE: Update duplicate keys

    In T-SQL there is an IGNORE_DUP_KEY option that can be added to the primary key. Unlike MySQL's ON DUPLICATE keyword, it doesn't result in an update for a row with...

Viewing 15 posts - 2,011 through 2,025 (of 6,035 total)