Forum Replies Created

Viewing 15 posts - 5,176 through 5,190 (of 8,753 total)

  • RE: Today's Random Word!

    crookj (5/26/2015)


    Ed Wagner (5/26/2015)


    Eirikur Eiriksson (5/22/2015)


    Revenant (5/22/2015)


    SQLRNNR (5/22/2015)


    psychoacoustic

    audio

    noise

    Background

    Image

    Spitting

  • RE: Power pivot connectivity issue with tabular cube

    Jim1234 (5/25/2015)


    Hi,

    When I'm trying to connect to a tabular cube via Power Pivot in Excel 2010, I'm getting an error

    "The following system error occurred: A connection attempt failed because the...

  • RE: MYSQL ERROR 1160 error

    adam.mesny (5/25/2015)


    I have received MySQL error 1160 'error writing communication packets'. I have a stored procedure that does this: step 1: compares the data from two tables and insert into...

  • RE: Critique My Understanding of Window Functions Please...

    Jason A. Long (5/25/2015)


    If you're getting into windowed functions in SQL 2012, I'd encourage to to also included "Window Frames" in your study.

    Windowed functions are an extremely powerful feature, and...

  • RE: to find equal and opposite rows in a table

    Quick single scan solution

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    WITH XSAMPLE(book, position) AS

    (SELECT * FROM (VALUES

    ('A', 500)

    ,('B',-500)

    ,('C',-500)

    ) AS X(book,...

  • RE: Scale out SQL Server Databases

    simon.harvey 41170 (5/25/2015)


    There could be a whole lot of hidden costs as in rewriting stuff that no longer works.

    Too true - I got the impression that even the SAAS costs...

  • RE: SQL Server 2012 - High Memory Usage

    TheSQLGuru (5/25/2015)


    Eirikur Eiriksson (5/23/2015)


    TheSQLGuru (5/23/2015)


    This thread has become a laundry list of worst practices!! πŸ™‚

    That by itself presents an opportunity, care to do a write up?

    😎

    Nope, sorry. I don't like...

  • RE: Critique My Understanding of Window Functions Please...

    Very quick note, you are definitely on the right track here, the notes are all correct and accurate so far.

    😎

  • RE: Advanced ranking function

    Luis Cazares (5/25/2015)


    This might be simpler to understand.

    WITH CTE AS(

    SELECT *, (ROW_NUMBER() OVER(PARTITION BY Country ORDER BY Id)+ 2) / 3 AS rowrank

    ...

  • RE: Advanced ranking function

    _simon_ (5/25/2015)


    Ughhhh... An explanation, yes please πŸ™‚

    The DENSE_RANK provides an one based incremental value for each country in an alphabetical order, the ROW_NUMBER / 3 adds the value of one...

  • RE: Advanced ranking function

    Quick and simple solution, should be enough to get you passed this hurdle, let me know if you need any explanations.

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    if object_id('tempdb.dbo.#Countries') is not null drop table...

  • RE: Selecting data from xml

    Jampandu (5/24/2015)


    Thank you very much sir, I'm able to write the sql script for other elements πŸ™‚

    Happy to help and thanks for the feedback.

    The Stairway to XML[/url] is excellent...

  • RE: Should we set maximum memory setting for each SQL server?

    WhiteLotus (5/24/2015)


    My team said that even if We don’t set up the maximum memory setting in DEDICATED SQL server , SQL will adjust memory usage dynamically and always leave 1...

  • RE: SQL Server 2012 - High Memory Usage

    audiocool (5/24/2015)


    Oh ya, you guys is always talking about RDP. What is the RDP you guys talking about ?

    Is that Remote desktop connection ? If yes, we all login to...

  • RE: Are the posted questions getting worse?

    Luis Cazares (5/24/2015)


    Would someone be interested on helping me to proofread an article that I'm planning to submit to SQLServerCentral? It's about while loops not being evil. πŸ˜€

    I would be...

Viewing 15 posts - 5,176 through 5,190 (of 8,753 total)