Viewing 10 posts - 31 through 40 (of 40 total)
Yes - this can be done in a tabular report. Based on your requirements, you can place a combination of date, store, item, and partner into a group. Then you...
June 29, 2009 at 6:10 am
Balaji,
Is there a particular reason why you're using a Matrix instead of the tabular report? By looking at your attached document, I don’t see the need for it. You...
June 26, 2009 at 12:39 pm
How about:
SELECT ID, PersonID, YEAR, Amount
FROM YourTable
UNPIVOT
(Amount FOR MONTHS IN
(JanAmt, FebAmt, MarAmt)) AS U
June 26, 2009 at 12:19 pm
What are you trying to accomplish?
June 22, 2009 at 1:38 pm
Jason,
Why would you want the field in the query and not in the result? I've seen this in MS Access when building the query via the GUI, but that is...
June 22, 2009 at 1:06 pm
Take a look at http://www.sommarskog.se/arrays-in-sql-2005.html#CSVand see if that help.
Eli
June 22, 2009 at 12:53 pm
I'm not sure about your second question, but for the first - you can use and output parameter on your inner stored procedure which can indicate whether it completed successfully.
June 22, 2009 at 12:46 pm
I fixed this by changing the Data Source from OLE DB to ODBC.
June 18, 2009 at 12:44 pm
Is this what you were looking for?
SELECT Col1, Col2, Col3
FROM Table1
WHERE (Col1 = x AND Col2 = DATEADD (HOUR, -24, GETDATE()) AND Col3 = x) OR
(Col1 = x AND Col3...
June 15, 2009 at 9:40 am
I have come across this problem in the past and found that it was caused by a NULL value in the dataset. Try to update the query so that the...
June 11, 2009 at 8:20 am
Viewing 10 posts - 31 through 40 (of 40 total)