Jaime\'s Business Intelligence Portfolio

12
Jaime Carlson [email protected] 512-773-7146

Transcript of Jaime\'s Business Intelligence Portfolio

Page 1: Jaime\'s Business Intelligence Portfolio

Jaime [email protected]

512-773-7146

Page 2: Jaime\'s Business Intelligence Portfolio

This presentation highlights some examples of my recent experiences in the field of Business Intelligence, primarily using the Microsoft BI stack

Data ModelingSQL ProgrammingSQL Server Integration Services (SSIS)SQL Server Analysis Services (SSAS)MDX ProgrammingSQL Server Reporting Services (SSRS)Performance Point Server (PPS)Experience Summary

Page 3: Jaime\'s Business Intelligence Portfolio
Page 4: Jaime\'s Business Intelligence Portfolio

declare @startDate DateTime, @EndDate datetime

set @StartDate = '1-1-2006' set @EndDate = '12-31-2008'

while @StartDate <= @EndDate begin insert into DimDates (ActualDate, WeekEndDate, MonthDescr, QuarterDescr, Year, MonthKey, QuarterKey, ShortWeekEnd, ShortActualDate ) values (@StartDate, @StartDate + (7 - datepart(dw,@StartDate)) , -- assumes a Sunday to Saturday business week datename(m,@StartDate) + ' ' + cast(year(@StartDate) as varchar(4)) , -- this will create "March 2006" 'Q' + cast(datepart(qq,@StartDate) as varchar(1)) + ' ' + cast(year(@StartDate) as varchar(4)) , -- this will create "Q3

2006" Year(@StartDate) , -- 2006 cast(year(@StartDate) as varchar(4)) + '-' + case when datepart(m,@StartDate) < 10 then '0' else '' end + cast(datepart(m,@StartDate) as varchar(2)) , -- "2006-12" or "2006-01" cast(year(@StartDate) as varchar(4)) + '-' + cast(datepart(qq,@StartDate) as varchar(1)), '',‘’

) -- "2006-1" for key for Q1 2006

set @StartDate = @StartDate + 1 end

update DimDates set ShortWeekEnd = cast(WeekEndDate as varchar(11)) update DimDates set ShortActualDate = cast(ActualDate as varchar(11))

insert into DimSalesType values ('Regular') insert into DimSalesType values ('PDF') insert into DimSalesType values ('Return') go

Page 5: Jaime\'s Business Intelligence Portfolio
Page 6: Jaime\'s Business Intelligence Portfolio
Page 7: Jaime\'s Business Intelligence Portfolio
Page 8: Jaime\'s Business Intelligence Portfolio
Page 9: Jaime\'s Business Intelligence Portfolio
Page 10: Jaime\'s Business Intelligence Portfolio

SSRS Reports using custom MDX code, deployed to SSRS Reports using custom MDX code, deployed to SharepointSharepoint

Page 11: Jaime\'s Business Intelligence Portfolio

Parameterized SSRS Reports deployed to SharepointParameterized SSRS Reports deployed to Sharepoint

Page 12: Jaime\'s Business Intelligence Portfolio

Experience

•10 years of IT Experience•Requirements Gathering, ETL, Dashboard Development, Report Development, Statistical Analysis•Database Development

•SQL server, Oracle, SAS•Business Intelligence

•SAS•Cognos•SQL Server 2005•Integration Services (SSIS)•Analysis Services (SSAS)•MDX Programming•Reporting Services (SSRS)•Excel and Excel Services•Performance Point Services 2007 (PPS)