Viewing 15 posts - 1,456 through 1,470 (of 2,647 total)
This makes no sense right now. Please provide sample data for the second table.
March 8, 2012 at 12:24 pm
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...
March 8, 2012 at 12:06 pm
Try this:
SELECT * FROM WarehousePickingGroup WHERE PickingGroup_ID = X and make X some pickingGroup_ID that is returning duplicates. Post the results here.
March 8, 2012 at 12:02 pm
ericb1 (3/8/2012)
March 8, 2012 at 11:59 am
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...
March 8, 2012 at 11:43 am
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. ...
March 8, 2012 at 11:35 am
MyDoggieJessie (3/8/2012)
March 8, 2012 at 11:29 am
sqlfriends (3/8/2012)
Although I did a lot of research and...
March 8, 2012 at 11:01 am
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...
March 8, 2012 at 10:28 am
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...
March 8, 2012 at 9:57 am
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...
March 8, 2012 at 8:01 am
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...
March 8, 2012 at 5:46 am
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....
March 7, 2012 at 2:58 pm
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...
March 7, 2012 at 2:52 pm
Matt Miller (#4) (3/7/2012)
SQLKnowItAll (3/7/2012)
March 7, 2012 at 2:44 pm
Viewing 15 posts - 1,456 through 1,470 (of 2,647 total)