Viewing 5 posts - 1 through 5 (of 5 total)
Thanks for the response. I assume you are talking about doing this via a query string. Unfortunately, i can't so this because of query string size limitations. I pass way...
March 11, 2009 at 8:30 am
ahh gees thanks guys I knew I left something stupid out.
December 14, 2007 at 6:03 am
Ok thanks guys all of your information was helpful.
December 3, 2007 at 4:55 pm
the view is as follows
CREATE VIEW [dbo].[VIEW_FACT_SALESDATA]
AS
SELECT * FROM [dbo].[Z_FACT_SALESDATA_2000]
UNION ALL
SELECT * FROM [dbo].[Z_FACT_SALESDATA_2002]
UNION ALL
SELECT * FROM [dbo].[Z_FACT_SALESDATA_2003]
UNION ALL
SELECT * FROM [dbo].[Z_FACT_SALESDATA_2004]
UNION ALL
SELECT * FROM [dbo].[Z_FACT_SALESDATA_2005]
UNION ALL
SELECT *...
November 26, 2007 at 2:41 pm
Viewing 5 posts - 1 through 5 (of 5 total)