15
Business Intelligence Suite Developer Is Business Intelligence In Your Business ?

Brian Adams

  • Upload
    brad817

  • View
    361

  • Download
    2

Embed Size (px)

DESCRIPTION

New and Improved Portfolio

Citation preview

Page 1: Brian Adams

Business Intelligence Suite Developer

Is Business Intelligence In Your Business ?

Page 2: Brian Adams

This Portfolio contains selected examples of my development skills in the Microsoft Business Intelligence Suite.

Core Technologies Explored and Mastered: Microsoft SQL Server 2005 ( including T SQL and MDX ) Microsoft SQL Server 2005 Integration Services (SSIS) Microsoft SQL Server 2005 Analysis Services (SSAS) Microsoft SQL Server 2005 Reporting Services (SSRS) Microsoft Office SharePoint Server 2007 (MOSS) Microsoft Office Performance Point Server (PPS)

Is Business Intelligence In Your Business ?

Page 3: Brian Adams

Is Business Intelligence In Your Business ?

select (m.firstname+' '+ m.middleInitial

+' '+m.lastname)as Name , a.street ,a.city, a.state ,a.zip

from Member m, adult awhere m.member_no =

a.member_no

Page 4: Brian Adams

Is Business Intelligence In Your Business ?

Page 5: Brian Adams

Is Business Intelligence In Your Business ?

Public Class ScriptMain

Public Sub Main() ' Dim TFO As Integer =

CInt(Dts.Variables("TotalFilesOpened").Value) Dim GTR As Integer =

CInt(Dts.Variables("GrandTotalRead").Value) Dim GTI As Integer =

CInt(Dts.Variables("GrandTotalInserted").Value) Dim GTC As Integer =

CInt(Dts.Variables("GrandTotalChanged").Value) Dim GTE As Integer =

CInt(Dts.Variables("GrandTotalError").Value) Dim EON As Integer = CInt(Dts.Variables("JustOne").Value) Dim TRR As Integer =

CInt(Dts.Variables("TotalRowsRead").Value) Dim TRI As Integer =

CInt(Dts.Variables("TotalRowsInserted").Value) Dim TRC As Integer =

CInt(Dts.Variables("TotalRowsChanged").Value) Dim TRE As Integer =

CInt(Dts.Variables("TotalRowsError").Value)

Dts.Variables("GrandTotalRead").Value = GTR + TRR Dts.Variables("GrandTotalInserted").Value = GTI + TRI Dts.Variables("GrandTotalChanged").Value = GTC + TRC Dts.Variables("GrandTotalError").Value = GTE + TRE Dts.Variables("TotalFilesOpened").Value = TFO + EON

Dts.TaskResult = Dts.Results.Success End Sub

End Class

Page 6: Brian Adams

Is Business Intelligence In Your Business ?

Page 7: Brian Adams

-- SetFocus, LLC -- Brian F. Adams 4/21/2009 --Retrieve and calculate the Total Costs, the Total Profit, and Total Profit %, -- for each individual Client. --The three are calculated as follows: -- Total Costs = Total Labor Cost + Total Material Cost + Total Overhead Cost -- Total Profit = Labor Profit + Material Profit + Additional Labor Overhead Profit -- Total Profit % = (Total Profit / (Total Cost + Total Profit)) * 100

With Member [Total Costs] as ( [Measures].[Total Labor Cost] + [Measures].[Total Material Cost] + [Measures].[Total Overhead]) Member [Total Profit] as ([Measures].[Total Labor Profit] + [Measures].[Total Material Profit] + [Measures].[Additional Labor Profit])

Member [Profit PCT] as iif( [Total Costs] <> null, ([Total Profit] / ([Total Costs] + [Total Profit])) * 1.00, 0), format_string = 'percent'

Select Filter( {[Clients].[Client Name].Members } , ([Total Costs] > 0 or [Total Profit] > 0 )) on rows , non empty { [Measures].[Total Costs], [Total Profit] , [Profit PCT] } on columns from [All Works]

Is Business Intelligence In Your Business ?

Page 8: Brian Adams

Is Business Intelligence In Your Business ?

Page 9: Brian Adams

Is Business Intelligence In Your Business ?

Page 10: Brian Adams

Is Business Intelligence In Your Business ?

Page 11: Brian Adams

Is Business Intelligence In Your Business ?

Page 12: Brian Adams

Is Business Intelligence In Your Business ?

Page 13: Brian Adams

Is Business Intelligence In Your Business ?

Page 14: Brian Adams

Is Business Intelligence In Your Business ?

Page 15: Brian Adams

I hope you enjoyed in a few short minutes what took 10 weeks of intense training to

accomplish.

Is Business Intelligence In Your Business ?