Forum Replies Created

Viewing 15 posts - 1,456 through 1,470 (of 2,647 total)

  • RE: how to write a insert query for this?

    This makes no sense right now. Please provide sample data for the second table.

    Jared
    CE - Microsoft

  • RE: Error converting varchar to Float

    Change this:

    SELECT WarehousePickingGroup.PickingGroupDescription, SalesTransactionDtl.Transaction_No, SalesTransactionDtl.Line_No

    FROM SalesTransactionDtl

    INNER JOIN WarehousePickingGroup

    ON SalesTransactionDtl.PickingGroup_ID = WarehousePickingGroup.PickingGroup_ID

    To this:

    SELECT WarehousePickingGroup.PickingGroupDescription, SalesTransactionDtl.Transaction_No, SalesTransactionDtl.Line_No

    FROM SalesTransactionDtl

    INNER JOIN WarehousePickingGroup

    ON SalesTransactionDtl.PickingGroup_ID = WarehousePickingGroup.PickingGroup_ID

    AND SalesTransactionHdr.Warehouse_No...

    Jared
    CE - Microsoft

  • RE: Error converting varchar to Float

    Try this:

    SELECT * FROM WarehousePickingGroup WHERE PickingGroup_ID = X and make X some pickingGroup_ID that is returning duplicates. Post the results here.

    Jared
    CE - Microsoft

  • RE: minimal domain privlidges for running SQL server

    ericb1 (3/8/2012)


    Thanks. I've tried that as well, and it didn't work either. If I put in my login or use "domain\Administrator" (which is a valid login on both...

    Jared
    CE - Microsoft

  • RE: Error converting varchar to Float

    I am assuming that you do not know the difference between an INNER JOIN and a LEFT JOIN. Inner join only returns rows where there is a match for...

    Jared
    CE - Microsoft

  • RE: minimal domain privlidges for running SQL server

    Go to the server objects\linked Servers and right-click on this object and select properties. Then click save or ok (I forget which one it is) to close it. ...

    Jared
    CE - Microsoft

  • RE: Transactional Replication Question

    MyDoggieJessie (3/8/2012)


    If you run a snapshot via the GUI (which is what I always use) it immediately places table/object locks on the tables being bcp'd. This works okay for...

    Jared
    CE - Microsoft

  • RE: Account running SQL server agent service

    sqlfriends (3/8/2012)


    I would like to ask expert on this forum a question that has been a puzzle for me for a long time.

    Although I did a lot of research and...

    Jared
    CE - Microsoft

  • RE: minimal domain privlidges for running SQL server

    Post the error you are receiving. Probably has to do with the linked server configuration or the permissions on the remote server. Also, assigning a domain user to a...

    Jared
    CE - Microsoft

  • RE: Transactional Replication Question

    MyDoggieJessie (3/8/2012)


    If the database is too large and/or there are way too many transactions/minute we do not use snapshot, but sync manually, start replication, then sync again for info that...

    Jared
    CE - Microsoft

  • RE: how to desgin useful partition table

    nobking (3/7/2012)


    SQLKnowItAll (3/7/2012)


    1.how many paritions maybe get performance increase?

    You don't partition for performance, you partition for data management and because it makes sense logically.

    2.how many rows in each partiton?

    How much...

    Jared
    CE - Microsoft

  • RE: Transactional Replication Question

    MysteryJimbo (3/8/2012)


    SQLKnowItAll (3/7/2012)


    When you create the subscription, it wall ask you if you want to initialize after you create the subscription. Make sure to say no here.

    Unless you do...

    Jared
    CE - Microsoft

  • RE: Transactional Replication Question

    Maybe I am misunderstanding... If you don't initialize with a snapshot, the tables have to be manually synced for all data before replication began. Otherwise you must push a snapshot....

    Jared
    CE - Microsoft

  • RE: how to desgin useful partition table

    Toby Harman (3/7/2012)


    you may find that the easiest way to improve performance is to get off RAID5.

    We don't even know what performance the OP is talking about. I suspect that...

    Jared
    CE - Microsoft

  • RE: view which has select * won't pick up the new columns

    Matt Miller (#4) (3/7/2012)


    SQLKnowItAll (3/7/2012)


    Since you know that the view will change definition and want it to pick up the changes, I would stick with the select * and add...

    Jared
    CE - Microsoft

Viewing 15 posts - 1,456 through 1,470 (of 2,647 total)