Viewing 15 posts - 91 through 105 (of 137 total)
You may want to check out the article from today about Using SSIS to export data from a 64 bit server to Excel 2007 [/url].
I've tended to use the 32-bit...
December 4, 2012 at 9:16 am
In fact, my CTE tally table is a calendar table (note: TALLY(N) AS (SELECT DATEADD(month, N, 0) FROM CTE6) ) of months starting at 1900-01-01 and ending with 9999-12-01 (total...
November 30, 2012 at 9:16 am
To follow-up my earlier suggestion, note that Cadavre's approach uses a tally table. A calendar table is a specialized version of a tally table.
It's a powerful tool. In...
November 30, 2012 at 9:05 am
Try building a calendar table, joining on your dates. Then you can aggregate by month using the month values in the calendar table. See the following article[/url]...
November 30, 2012 at 8:51 am
You may want to look into user defined functions. See BOL or this MSDN article on UDFs for further details.
You may also find this article by Erland Sommarskog helpful.
November 13, 2012 at 1:27 pm
I've found that when I get errors that aren't clear to me, doing an internet search for the error code will often be helpful. There isn't enough information in...
November 2, 2012 at 3:48 pm
November 1, 2012 at 9:27 am
Cross post. See:
http://www.sqlservercentral.com/Forums/Topic1374114-364-1.aspx
October 18, 2012 at 12:24 pm
Cross post. See:
http://www.sqlservercentral.com/Forums/Topic1374114-364-1.aspx
October 18, 2012 at 12:23 pm
Hi Learner,
A suggestion and a question. The suggestion. It's very helpful if you do not cross-post your questions. That keeps the responses in one place. Folks...
October 18, 2012 at 12:21 pm
A couple of resources to get you started:
Stairway to Integration Services[/url]
Connecting to MySQL from SSIS. I haven't had to connect to MySQL but it appears that this blog post...
October 18, 2012 at 12:09 pm
If you want to begin to explore an SSIS solution, use the Import/Export Wizard (SSMS-->Select Database-->Right click, Select 'Tasks' and from there Select 'Export Data'). Walk through the wizard....
October 16, 2012 at 11:57 am
Based on the two sources mentioned in the prior post, here's a possible approach. First, create the data. I've added a second member based on the structure of...
October 16, 2012 at 9:51 am
Check out this SQL Spackle article by Jeff Moden:
Group Islands of Contiguous Dates[/url]
If you got access to a copy, also helpful is the discussion about 'Islands and Gaps' in 'TSQL...
October 16, 2012 at 8:27 am
You'll need to execute a SQL task for each tab using an EXCEL connection manager pointing to the output spreadsheet. The SQL task contains the DDL to do the...
October 11, 2012 at 9:01 am
Viewing 15 posts - 91 through 105 (of 137 total)