Viewing 15 posts - 781 through 795 (of 4,820 total)
I have a lot to learn.
I think I have to...
August 1, 2018 at 8:30 am
August 1, 2018 at 8:08 am
August 1, 2018 at 7:47 am
August 1, 2018 at 6:59 am
August 1, 2018 at 6:47 am
yoyodynedata - Tuesday, July 31, 2018 10:50 AMOh good point. That will return a table of all the latest values.
Glad I could...
July 31, 2018 at 11:04 am
Don't I recall you saying in another thread that you forgot to run that script with the EXEC statements un-commented?
EDIT: come to look closer, your just posted script...
July 31, 2018 at 10:53 am
cchapel - Tuesday, July 31, 2018 10:38 AMThanks! That worked!
You're very welcome.
July 31, 2018 at 10:49 am
If you need to combine the results into a single set of results, you can use UNION ALL, and as such requires the same number of columns and matching data...
July 31, 2018 at 10:44 am
Eliminate the VALUES clause, and leave it's query behind. As you are using SELECT, you don't want to use a VALUES clause, as within that context, SQL Server wll expect...
July 31, 2018 at 10:31 am
July 31, 2018 at 10:22 am
July 31, 2018 at 6:08 am
Let's try the following:-- Create Combo Pack of Top Selling Hats and T-Shirts
CREATE TABLE #Items (
IID int IDENTITY (1,1),
Item_Desc varchar(100),
ItemType varchar(10),
QtySold int
);
July 30, 2018 at 3:27 pm
And a couple of other thoughts... I'm doubtful that even if you kept phase as a standalone dimension, I don't see much value in it. About the only way that...
July 30, 2018 at 3:11 pm
July 30, 2018 at 3:02 pm
Viewing 15 posts - 781 through 795 (of 4,820 total)