Viewing 14 posts - 1 through 14 (of 14 total)
thanks!
talked to a programmer and found the other 2 fields in a table that I don't need, but will try to join in anyway and see if it works.
July 25, 2012 at 9:41 am
patrickmcginnis59 (6/28/2012)
June 28, 2012 at 1:36 pm
Thank you, I am trying out the Cross Join now. Of course, I was told there would only be 1 row in the database and there are actually 10....
June 28, 2012 at 7:48 am
SQLKnowItAll (3/8/2012)
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...
March 8, 2012 at 12:19 pm
No, I did not know the difference. I changed it to a LEFT and now I get too many rows! It is still doing the same thing, where...
March 8, 2012 at 11:55 am
Well of course the data wasn't correct! It wasn't returning enough rows, so I am narrowed it down and found one of the issues and I can't figure out...
March 8, 2012 at 11:15 am
Greg Snidow (3/7/2012)
I think I finally have it working
I'm just curious, how many rows are there, and how long does it take to run?
I am only using test data right...
March 8, 2012 at 11:04 am
SQLKnowItAll (3/7/2012)
March 7, 2012 at 11:50 am
Ok, well this is fun! :w00t:
I have gone through them all and found the culprit. While trying to debug, I have found that some of the columns that are...
March 7, 2012 at 11:31 am
Sorry!
When I view the first 1000 rows of data in SQL Server, every row is exactly the same, which isn't what I expected. Same data in every field for...
March 6, 2012 at 2:02 pm
Well I got this working, but it looks like the data isn't correct 🙁
the first 1000 rows are all the same...
Any ideas?
Here is the view, same as yours Jared, just...
March 6, 2012 at 1:55 pm
Thanks for all the help, if we have more issues maybe my company can hire Jared! The other consultant was specifically for Talend and I'm not sure that he...
March 6, 2012 at 10:36 am
Funny thing is, a consultant did create that! I was hired to create reports based off that view. They have created a non-normalized table based off this view so...
March 6, 2012 at 10:11 am
Thanks Jared!
That fixed that error and now I am getting another one...
Msg 512, Level 16, State 1, Line 2
Subquery returned more than 1 value. This is not permitted when the...
March 6, 2012 at 8:55 am
Viewing 14 posts - 1 through 14 (of 14 total)