Viewing 15 posts - 1,561 through 1,575 (of 3,482 total)
I could do that. I was trying to make sure I had it all installed correctly before going on to harder things. SSIS is bad enough for me as is,...
April 24, 2017 at 1:57 pm
Just to make sure I wasn't doing something really stupid, I ran the Import wizard from SSMS, and tried to import the same data saved as a Text file. The...
April 24, 2017 at 1:33 pm
Did that already too. =( That's why I'm completely perplexed by this one. What else did I miss?
April 24, 2017 at 12:30 pm
Then explain in plain English how that's supposed to happen. Once I know that, I can probably code it.
April 21, 2017 at 10:57 pm
first you'd have to post the definitions of views 1, 2, and 3.
April 21, 2017 at 9:50 pm
SELECT Client_ID
, MAX([Amount]) AS MaxAmount
FROM ##TEMP
WHERE Amount>0
GROUP BY Client_ID;
April 21, 2017 at 9:44 pm
without some CREATE TABLE statements and some consumable sample data, there's no way for anyone to really help you. Please read this article and follow the instructions so...
April 19, 2017 at 2:35 pm
I posted a link to Jeff's article so you would read it. One of the keys to getting an answer is asking a good question, and Jeff explains how to...
April 18, 2017 at 7:19 pm
Could you post your expected completed pivot given the data provided?
April 18, 2017 at 7:01 pm
Did you read Jeff Moden's article about crosstabs/pivots in T-SQL?
April 18, 2017 at 5:24 pm
"Not working" is not terribly helpful when diagnosing a query.
post the T-SQL for your query and maybe we can help.
For someone that's been here as long as...
April 18, 2017 at 12:02 am
Look up examples for CROSS APPLY and TOP... Here's Itzik's example from Itzik Ben-Gan on SQL 2008
SELECT D.orderID, D.productID, D.qty
FROM Sales.Orders AS O
CROSS APPLY
April 17, 2017 at 9:36 pm
use a correlated subquery and [NOT] EXISTS to find parent records with/without child records. Just too lazy/tired to sort out the mess without sample data.
April 11, 2017 at 12:13 am
Got some table definitions and some sample data and some expected results? You know, same old same old.
April 6, 2017 at 4:00 pm
I would like the calculation to display own the output window and/or the messages window when executing SSIS 2012 manager.
False. This is an SSIS question.
April 6, 2017 at 12:57 pm
Viewing 15 posts - 1,561 through 1,575 (of 3,482 total)