Forum Replies Created

Viewing 15 posts - 4,771 through 4,785 (of 8,761 total)

  • RE: Are the posted questions getting worse?

    Grant Fritchey (8/11/2015)


    Eirikur Eiriksson (8/11/2015)


    0xC34F0xC350 Missed it:pinch::-D

    😎

    ... by that much.

    It was truly a "near miss":-D

    😎

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (8/11/2015)


    Koen Verbeeck (8/11/2015)


    jasona.work (8/11/2015)


    Where are the balloons from the ceiling? Confetti?

    Cake?

    This has been quite the disappointment.

    I thought we all would get 50,000 extra points.

    Ah well, up to...

  • RE: Are the posted questions getting worse?

    0xC34F0xC350 Missed it:pinch::-D

    😎

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (8/11/2015)


    Only 10 posts to go...

    Correction, only 7 posts to go...:-D

    😎

  • RE: Today's Random Word!

    Ed Wagner (8/11/2015)


    TomThomson (8/10/2015)


    SQLRNNR (8/10/2015)


    centrifuge

    acceleration

    Velocity

    Inertia

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (8/11/2015)


    ChrisM@Work (8/11/2015)


    Koen Verbeeck (8/11/2015)


    You mean something like this?

    Seems like a very serious injury...

    That's him! Very talented actor, not afraid to get down and dirty.

    And despite his successes, he...

  • RE: How to set BOL to local once set to online?

    peter 82125 (8/10/2015)


    Thanks! Where is that Help option located, please?

    Few options in SSMS:

    1) press ALT + H, Down arrow, Enter

    2) Left click on the [HELP] menu and...

  • RE: Are the posted questions getting worse?

    I lose!:pinch:

    😎

  • RE: Help Need in join

    Quick suggestion

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    declare @Users table(UserID int identity(1,1) primary key,Name varchar(50),Active bit);

    declare @CreditCards table(IdCredicard int identity(1,1) primary key, UserID int,CardNo bigint,Active bit,Date_Created datetime);

    insert into @Users(Name,Active)

    select 'Name1',1 union all

    select 'Name2',1...

  • RE: How to set BOL to local once set to online?

    peter 82125 (8/10/2015)


    When I first opened Books Online, I chose the option to run the documentation online rather than locally; now I would like to change that to locally. Can...

  • RE: Slow Query (FOR XML)

    Further on the subject, what is killing the performance is most certainly the distinct sort and table scans for the xml subquery. Adding an index on InvoiceID, Row_Num and include...

  • RE: Slow Query (FOR XML)

    sandhuz24 (8/10/2015)


    Still, I would like to know if it possible to optimise the query when reading entire table.

    Thanks

    Quick thought, too much information missing, without it one is just guessing!

    😎

    Post the...

  • RE: Float to Varchar

    jan.dewettinck (8/9/2015)


    Thanks for the question

    Not sure if the following link provides a better explanation.

    https://msdn.microsoft.com/en-us/library/ms187928.aspx

    I based my answer on the part about the style which says that the default is...

  • RE: Query to list rows into columns

    NLV (8/10/2015)


    Thanks Erikson for your help.

    You are very welcome

    😎

  • RE: Query to list rows into columns

    Quick suggestion

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.test') IS NOT NULL DROP TABLE dbo.test;

    GO

    CREATE TABLE dbo.test (

    action_id numeric,

    action VARCHAR(20) NOT NULL,

    action_by VARCHAR(20) NOT NULL,

    action_date VARCHAR(20) NOT NULL

    );

    INSERT INTO dbo.test (action_id,action, action_by,action_date)

    VALUES...

Viewing 15 posts - 4,771 through 4,785 (of 8,761 total)