Forum Replies Created

Viewing 15 posts - 121 through 135 (of 616 total)

  • RE: DWH Practice

    ntuschiev (9/10/2013)


    I've read one of the Kimball book's and have some experience with SSIS..

    ETL Developer roles is another way to get into MS BI arena.

  • RE: It's not you; it's us

    Come on.. let's have one massive group hug, even uncle Bill Gates is invited 😛

  • RE: Reset ranking based on flag

    Waiting for the pros to offer their solution but this is my attempt:

    with cte AS (

    select quoteid, requestid, createdat,

    ISNULL((select top 1 datediff(dd, b.createdat, a.createdat)

    from...

  • RE: Project Plan

    OnlyOneRJ (9/5/2013)


    Nothing like that..

    Customer just want a Project plan on existing environment we have..

    and have asked us to come up with do & dont's on DB server..

    Like following standards, what...

  • RE: Reset ranking based on flag

    Could you please supply the CREATE TABLE statement and some sample data please?

  • RE: String splitter function

    This is a great read if you have the time:

    http://www.sqlservercentral.com/articles/Tally+Table/72993/

    The function is below:

    Example of how to use:

    select Item from [DelimitedSplit8K]('6000, 7000, 600000, 3393043, 274878423, 2837423', ',')

    DROP FUNCTION [dbo].[DelimitedSplit8K]

    go

    CREATE FUNCTION...

  • RE: SELECT ONLY ONE ROW FROM MANY

    That's not what Koen meant but never mind it appears that you're choosing the name based on descending alphabetical order.

    Try the below:

    SELECT

    A.[ITEMID]

    , A.[LabelCode]

    ,(select top 1 NAME

    from...

  • RE: It's not you; it's us

    djackson 22568 (9/4/2013)


    Now if they ever come out with a Google Search certification...

    ....so true, I'd be shovelling poop for a living if it wasn't for Google :hehe:

    p.s.

    No disrespect to those...

  • RE: It's not you; it's us

    GilaMonster (9/4/2013)


    Abu Dina (9/4/2013)


    You'll still be earning plenty of $$$$$ 😉

    Really? Why didn't anyone tell me that?

    I profusely apologise your almightiness!

    No seriously, I empathise but don't let the prawn sandwich...

  • RE: It's not you; it's us

    They can take away the title but they can't take away your knowledge.

    You'll still be earning plenty of $$$$$ 😉

  • RE: Comlplicated query help

    Sweet.

    One thing I should have mentioned is that its best to specify a length when casting/converting to VARCHAR. But I suppose it doesn't matter in your case as you're casting...

  • RE: Advancing Knowledge of Subqueries

    Ryan1 (9/3/2013)


    wow guys thank you. I get it! muhahaha

    What's funnier is that once you get through this book + plenty of practice, you'll start to see these joins in...

  • RE: Advancing Knowledge of Subqueries

    Select orderid, orderdate, empid, custid,

    (Select MAX(O2.orderid)

    FROM Sales.Orders AS O2

    WHERE O2.orderid < O1.orderid) AS...

  • RE: Comlplicated query help

    Anytime 😀

  • RE: Comlplicated query help

    Maybe you need to change the primary column to something like this?

    ( SELECT [Name] + ',' + [State]

    ...

Viewing 15 posts - 121 through 135 (of 616 total)