Forum Replies Created

Viewing 15 posts - 4,291 through 4,305 (of 8,753 total)

  • RE: Are the posted questions getting worse?

    SQLRNNR (11/6/2015)


    The datetime is stored as milliseconds right? From some ambiguous epoch right?

    Ehemm, cough cough cough!

    😎

  • RE: Are the posted questions getting worse?

    WayneS (11/6/2015)


    xsevensinzx (11/6/2015)


    who in the hell is applying for a senior position and not know GETDATE()?

    Just 9 out of 10 applicants. Maybe higher.

    That is just being spammed with non-applicable...

  • RE: Today's Random Word!

    Igor Micev (11/6/2015)


    Igor Micev (11/6/2015)


    DonlSimpson (11/5/2015)


    Ed Wagner (11/5/2015)


    djj (11/5/2015)


    crookj (11/5/2015)


    Igor Micev (11/5/2015)


    Luis Cazares (11/5/2015)


    anthony.green (11/5/2015)


    Igor Micev (11/5/2015)


    crookj (11/5/2015)


    Ed Wagner (11/5/2015)


    anthony.green (11/5/2015)


    TomThomson (11/4/2015)


    DonlSimpson (11/4/2015)


    Weak

    frail

    Old

    Experience

    Familiarity

    Information

    Announcement

    Billboard

    City

    of Heroes

    Advengers

    Hiro Nakumura

    Hiroshima

    Bomb

    End

    TRY

  • RE: Unable to open the physical file "D:\databasepc.mdf". Operating system error 5: "5(Access is denied.)".

    Raghavender (11/6/2015)


    Hi All,

    I am trying to attach a database. But I am receiving below error:

    Unable to open the physical file "D:\databasepc.mdf". Operating system error 5: "5(Access is denied.)".

    I have added...

  • RE: Can you replace stored procedures with sp_executesql

    jigging.tech (11/5/2015)


    Hello all!

    Currently, in the new environment I'm working in, there are no stored procedures everything comes in as Ad-Hoc T-SQL with local variables.

    I brought up that we...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (11/5/2015)


    BWFC (11/5/2015)


    I mentioned the Excel BI tools and apparently they don't want use 'spreadsheets'. I'm pretty sure though that's down to a lack of understanding of the...

  • RE: Can't find the Data Flow Task in SSDT 2012

    You have to select / expand the toolbox

    😎

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (11/4/2015)


    djj (11/4/2015)


    I also interview really badly.

    Bridge Guardian: What is your name?

    DJJ: Umm. I don't know?

    DJJ: AGGGGHHHHH!

    Bridge Guardian: Sigh. Usually they get to the swallow question before they go...

  • RE: Question/Advice needed Sliding Window partitioning range right,what the effecient way to implement/are staging tables needed

    Piling on further, now 23 posts into this thread and yet there are nowhere near enough information to even begin to guess let alone advice on the problem. Few facts...

  • RE: String format to be formed out of a column

    Junglee_George (11/4/2015)


    Thank You Eirikur.. Loved it..

    One more help. Is it feasible for this value to be shown

    INSERT INTO #ActivityComments VALUES('S14-04932-01 + S15-04931-01 + S14-04932-02')

    Output

    ----------

    S14-04932-01, S15-04931-01, S14-04932-02'

    That's an entirely different...

  • RE: String format to be formed out of a column

    Quick fix

    😎

    CREATE TABLE #ActivityComments(Comments NVARCHAR(MAX))

    INSERT INTO #ActivityComments VALUES('This is the study code for Field Phase S14-04932-01')

    INSERT INTO #ActivityComments VALUES('Phase reporting has the study S15-04931-01 which is obselete')

    INSERT INTO #ActivityComments VALUES('Phase...

  • RE: Anyone help me with this aggregation problem? Thanks

    Quick solution

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

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

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

    CREATE TABLE dbo.customer_payment

    (

    Customer_Nbr_TxtVARCHAR(255),

    Loan_NbrBIGINT,

    Trans_Amt decimal(22,2),

    Payment_tp VARCHAR(255)

    );

    INSERT INTO dbo.customer_payment (Customer_Nbr_Txt,Loan_Nbr,Trans_Amt,Payment_tp)

    VALUES

    ('007849', '11613577', '1000','ACH'),

    ('007849', '11613578', '200',...

  • RE: Why is this view slow ( takes 1:38 to select all records )

    Further on Gail's excellent answer, can you post the actual execution plan and preferably the DDL (create scripts) for all tables, functions and indices?

    😎

    First glance at the code suggests that...

  • RE: String format to be formed out of a column

    Further on Jacob's excellent suggestion, check for the existence of the pattern before the substring, as you could have false positives when the pattern is not found.

    😎

  • RE: Are the posted questions getting worse?

    GilaMonster (11/3/2015)


    ChrisM@Work (11/3/2015)


    Any folks out there with a little time to spare with this thread - it's just exceeded my comfort zone. Thanks.

    No spare time this week, but given the...

Viewing 15 posts - 4,291 through 4,305 (of 8,753 total)