Skip to main content

Training by Jessica

I have a few events coming up that I wanted to let you knew about.  If you attend, be sure to say hi!

Extract, Transform, and Load your Data Warehouse

The SQLPASS Business Intelligence Virtual Chapter always provides great information for both beginners and more advanced BI developers.  I’ll be presenting at noon EST on 5/14/2010 on Extract, Transform, and Load your Data Warehouse.  We’ll talk about why ETL is different/important for data warehousing and give examples of more advanced dimensional load scenarios you may face.

Adding SSRS Report Bells and Whistles

I’m traveling down to Raleigh, NC to speak for the Triangle SQL Server User Group on 5/18/2010 at 6:30pm EST.  I’ve really enjoyed giving this presentation, where I speak about best design practices for SSRS 2008.  I hope to get lots of great questions as well!

Easier than Ever Report Authoring in SSRS 2008 R2

The second annual 24 Hours of PASS will be held from on May 19th for the entire day.  Yes, that’s right – 24 sessions, back-to-back, one right after another.  Many of the sessions are on SQL Server 2008 R2, so if you have been considering upgrading or would like to learn about the new functionality, you should definitely check it out.  My session, entitled Easier than Ever Report Authoring in SSRS 2008 R2, is on 5/19/2010 at 6:00PM EST.

IndyTechFest

This will be my first time attending the IndyTechFest conference in Indianapolis on 5/22/2010.  I will be presenting a different variation of my Extract, Transform, and Load your Data Warehouse presentation as well as participating in the Women In Technology Luncheon panel.  I’m looking forward to meeting lots of new people during my two sessions.

Prairie Developer Conference

Last, but certainly not least, is the Prairie Developer Conference in Regina, Canada.  My good friend, D’Arcy Lussier, is putting this conference on for the first time to provide great training to middle-Canada.  I will be speaking on two topics: Incorporating Reporting Services into SharePoint and Who Needs a Data Warehouse?  You still have time to register before the conference on 6/2/2010-6/3/2010, so what are you waiting for?

Comments

M Simms said…
regarding the statement you made below:
SQL Server 2008 R2 includes many new business intelligence features, especially in Reporting Services. SSRS 2008 R2 contains better report collaboration, new report items, enhanced visualizations, and additional management and deployment functionality. This session highlights new authoring features and how they can help you design and develop better reports. Plus learn how to display map data, create a dashboard, and reuse report items in your new SSRS 2008 R2 reports.

Can you offer some insight regarding how far 2008 R2 has come as far as matching the latest version of Crystal Reports especially in the area of report design and creation ? All of the SSRS vs. Crystal debates out there are old, old, old. Thanks !

Popular posts from this blog

Reporting Services 2008 Configuration Mistake

To start working with the management side of SQL Server Reporting Services 2008, I decided to set up a report server and report manager. Unfortunately, I made a mistake while setting up my configuration that left me a little perplexed. Here are the steps I took to cause, track down, and solve the issue. Problem: I began by opening the Reporting Services Configuration Manager from the Start Menu. I clicked through each of the menu options and accepted the defaults for any question with a warning symbol, since warning symbol typically designate an action item. After two minutes, all of the warning symbols had disappeared, and I was ready to begin managing my report server. Unfortunately, opening up a browser and trying to open up the report manager resulted in the dreaded " The report server has encountered a configuration error. (rsServerConfigurationError) " message. Sherlock-ing it: I put on my sleuthing hat and went to the log file directory: C:\Program Files\Microsoft...

Execute SQL Task Designer Limit

After migrating a package from DTS to SSIS, I had a problem with an Execute SQL Task. I couldn't change any characters in the SQLStatement property; I couldn't add any new characters; I could delete characters, but not retype them! After googling several variations of "integration services" "read only" and "Execute SQL Task", I deleted about half of the entry in a fit of frustration. Lo and behold, I could type again. Apparently, there is limit on the size or number of characters that can be entered in the SQLStatement property. From my experimentation, I came up with a limit of 32767 characters. The interesting thing is that the restriction only seems to be on the designer. If you set the SourceType to "Variable" and use a variable that contains more than 32767 characters, the task will execute. Also, if you use the "Direct Input" SourceType and modify the package XML to set the SQLStatement longer than 32767 characters, ...

Manipulating Excel Spreadsheets in SSIS

Tom, an attendee at last weekend’s SQLSaturday Olympia , asked me how to refresh a spreadsheet from within SQL Server Integration Services. My first thought was to turn on the connection’s “Refresh data when opening the file” option in the spreadsheet itself and avoid the situation entirely; however, this may not always be a viable solution. Here are the steps to perform the refresh from within an SSIS package. First, ensure that Microsoft.Office.Interop.Excel is registered in the GAC. If not, install the 2007 Microsoft Office system Primary Interop Assemblies . This will need to be done on any machine where you plan on running this package. Next, create a script task in your SSIS package that contains the following code (include your spreadsheet name): Imports System Imports System.Data Imports System.Math Imports Microsoft.SqlServer.Dts.Runtime Imports Microsoft.Office.Interop.Excel Public Class ScriptMain Public Sub Main() Dts.TaskResult = Dts.Results.Success Dim excel...