Forum Replies Created

Viewing 15 posts - 5,731 through 5,745 (of 10,144 total)

  • RE: Running Values ( Cummulative)

    Mitesh Oswal (9/4/2012)


    Farooq,

    Can you please verify the below code. Looks better performance...

    Very interesting. Can you post the test script which you used for the comparison?

  • RE: how to insert one column of table in one databse to other column of table in another databse

    vinay.varaala (9/4/2012)


    Dispenser_pump_mapping TABLE:

    create table Dispenser_pump_mapping

    (

    dis_pump_map_id int IDENTITY,

    simmons_id int not null,

    dispenser int primary key ,

    fp int not null,

    nozzle int not null,

    tank_id int foreign key (tank_id) references

    Tank(tank_id)

    )

    So, what do...

  • RE: how to insert one column of table in one databse to other column of table in another databse

    Can you post the CREATE TABLE script for fuel.dbo.Dispenser_pump_mapping?

    Looks to me like this column is possibly a FK.

  • RE: Are the posted questions getting worse?

    Cadavre (9/4/2012)


    Note: I'm from England.

    I was once taken aside by a manager and told off for pronouncing "router" as "root-er" to one of our American clients. I was told that...

  • RE: Running Values ( Cummulative)

    farooq.hbs (9/4/2012)


    ...

    Hoping will get the Solution for this

    Thanks

    Of course - but you will get a solution much quicker if you can set up DDL and DML for some sample data....

  • RE: Outer join not working correctly

    cmc_dermo (9/4/2012)


    id really like to understand what the cross join does, but if it is too much time to describe i will go look it up 🙂

    Every row on the...

  • RE: Outer join not working correctly

    cmc_dermo (9/4/2012)


    believe it or not i tried to work it out and got it working...

    That's exactly the result that everybody here hopes to see 😀

    If there's anything you're unsure about,...

  • RE: Outer join not working correctly

    cmc_dermo (9/4/2012)


    ok that works but i want to add week as well (sorry guys) as soon as i add vs.week = 36 it doesn't work.

    It has to be part of...

  • RE: Outer join not working correctly

    cmc_dermo (9/4/2012)


    now i am getting confused 🙂

    Maybe i need to explain better?

    I need all the items from the items table but i would also like the query to look in...

  • RE: Outer join not working correctly

    John Mitchell-245523 (9/4/2012)


    Chris, are you sure about that? Referencing a column from the outer table will turn an outer join into an inner join if the reference is in...

  • RE: Outer join not working correctly

    SELECT

    Items.Item_Desc,

    Items.Updated_By,

    it.Item_Type_Desc,

    Opening_Balance = ISNULL(vs.Opening_Balance,0),

    v.Venue_Name

    FROM m_Venue v

    CROSS JOIN m_Items AS Items -- every venue has every item

    INNER JOIN m_Item_Type it

    ON Items.Item_Type = it.Item_Type_ID

    LEFT JOIN...

  • RE: Outer join not working correctly

    cmc_dermo (9/3/2012)


    ...I have a query where i would like to show all items from the items table even if no data exists for that item in the stock table...

    Having read...

  • RE: Are the posted questions getting worse?

    BrainDonor (9/4/2012)


    ChrisM@Work (9/4/2012)


    BrainDonor (9/4/2012)


    ChrisM@Work (9/4/2012)


    David Burrows (9/4/2012)


    Fal (9/3/2012)


    Quick poll: how would you pronounce the word "Route"?

    I'll explain why later, if I'm not too embarrassed. :blink:

    Steve.

    I am English so naturally...

  • RE: Are the posted questions getting worse?

    BrainDonor (9/4/2012)


    ChrisM@Work (9/4/2012)


    David Burrows (9/4/2012)


    Fal (9/3/2012)


    Quick poll: how would you pronounce the word "Route"?

    I'll explain why later, if I'm not too embarrassed. :blink:

    Steve.

    I am English so naturally /ru?t/

    Likewise -...

  • RE: Basic Design Question

    Without any prior experience of this type of data, I'd be tempted to add a time dimension. That would give you team history, the team as it is right now,...

Viewing 15 posts - 5,731 through 5,745 (of 10,144 total)