Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research:...

35
Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Transcript of Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research:...

Page 1: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Alabama Association for Institutional ResearchAnnual Conference April 2007Institutional Research: Is It Rocket Science?

Page 2: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Migrating From Static To Dynamic ReportsTechnical Tips And Strategies

Page 3: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Kennesaw State University• Size

– KSU is the third largest university in Georgia with nearly 20,000 students enrolled in 60 academic programs

• Global Environment– Over 1,700 international

students from 136 different countries are in attendance

Page 4: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Kennesaw State University• Faculty

– 607 full time faculty members teach at Kennesaw State University

• Carnegie Classification– Master’s College and

University L

Page 5: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Today’s Agenda

• Define The “Opportunity”– Where– What– Why– Decision– Challenges– How– Impact

Page 6: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Where We Were In 2001• Institutional Research

Website 2001– Static pages– Static data

• Ad Hoc Reports– Only in response to a

specific request

Page 7: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

What We Wanted To Accomplish• Information On

Demand– Make many of our ad

hoc reporting mechanisms available as interactive or drill down tools on our website

Page 8: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Why We Wanted To Accomplish This • Program Review

– Accurate, up to date information

– Aggregate and granular data specific to particular academic programs

– Individual departments need to generate and analyze their own data

Page 9: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

The Decision To Develop Our Own Tools • Packaged vs. Custom

– Crystal Reports, SAS, Cognos, DiscovererCostsLearning curve

– Web ApplicationsMenu basedResult oriented

Page 10: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Technology• Utilization• Communication• Business Practices

Page 11: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Technology

– Data SourceConsistent, centralized,

localExtract and present

accurate, up to date information

Page 12: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Technology

– SecuritySecure databaseSecure connectionsSecure presentation

– No personally identifiable information

– .NET won’t serve source files

Page 13: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Technology

– CompatibilityOracle / Microsoft

connection issuesWe were successful with

ODP.NET and ODBCWe were unable to

employ OLEDB successfully in our environment

Page 14: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Utilization

– What reports will be most useful?

Page 15: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Communication

– Must have a good working relationship with database administrators and users

– Systems Development Life Cycle (SDLC)

Page 16: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Challenges We Faced• Business Practices

– Proactive vs. reactive– Transitioning to a

systems development orientation

– User involvement and education

Page 17: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Source

– Student Information Reporting System (SIRS)

– Curriculum Inventory (CIR)

– BannerAdmission Enrollment Registration

Page 18: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Database

– We Use Oracle 10g v2, 9.2– Other database products,

such as MySQL or SQL Server, will also support dynamic web applications

– MS Access and MS Excel probably won’t support dynamic web applications

Page 19: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Extraction

Queries– Because we use an

Oracle database, we write our queries in SQL and PL/SQL

– There are effective alternatives such as Java, C#, Visual Basic and others

Page 20: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Presentation

– We use ASP.NET, Visual Studio and VB.NET 2003 and 2005

– We run IIS with framework 1.1 and 2.0

– We also employ Extensible Markup Language (XML), Extensible Stylesheet Language (XSL) and Cascading Style Sheets (CSS)

Page 21: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution

Banner DSS ASPXCSS

Page 22: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution

Banner ASPXXSLCSS

XML

Page 23: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution

BannerDSS

Portal

ASPXCSS

Page 24: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Presentation

– You may choose other tools, such as Java Server Pages (JSP) or Hypertext Pre-processing (PHP)

Page 25: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Extraction

SnippetFUNCTION GET_TERM_DESC (term_code IN TABLE.TABLE.TERM_CODE%TYPE) RETURN TABLE.TABLE.TERM_DESC%TYPE IS CURSOR term_desc_cur (term_code_in

TABLE.TABLE.TERM_CODE%TYPE) IS SELECT TERM_DESC FROM TABLE.TABLE WHERE TERM_CODE = term_code; return_value TABLE.TABLE.TERM_DESC%TYPE;

BEGIN OPEN term_desc_cur (term_code); FETCH term_desc_cur into return_value; CLOSE term_desc_cur; RETURN return_value;END;

Page 26: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Extraction Snippet

xmlhelper.tagStart('Five-Year-Enrollment');

FOR y_row IN (SELECT REPLACE(T.YEAR_DESC, 'Fall ', '') YEAR_DESC, V.COMP_VALUE

FROM TABLE V, TABLE T WHERE V.YEAR_CODE = T.YEAR_CODE AND V.DATA_CODE = 'ACD_ENRL_BY_MAJR' AND V.COMP_CODE = 'MAJR_'||row.MAJR_CODE AND V.YEAR_CODE IN (TABLE_YEAR_CODE, TABLE_YEAR_CODE_1, TABLE_YEAR_CODE_2, TABLE_YEAR_CODE_3, TABLE_YEAR_CODE_4)) LOOP htp.p('<Term Description="'||

y_row.YEAR_DESC||'">'); xmlhelper.element('Value',

LTRIM(TO_CHAR(y_row.COMP_VALUE, '999,999'))); xmlhelper.element('Percentage', ROUND(100 *

y_row.COMP_VALUE / TOTAL_FIVE_YEAR)); xmlhelper.tagEnd('Term'); END LOOP;

xmlhelper.tagEnd('Five-Year-Enrollment');

Page 27: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Presentation XML Snippet

<?xml version="1.0" ?><ProgramCharacteristics>

<Request-Date>25-OCT-2004</Request-Date><Term Code="200408" Description="Fall Semester 2004" /><Degree Level="Undergraduate">

<Program Code="ACC" Description="Accounting"><Five-Year-Enrollment><Term Description="2000"><Value>438</Value>

<Percentage>18</Percentage></Term><Term Description="2001"><Value>407</Value>

<Percentage>17</Percentage></Term><Term Description="2002"><Value>467</Value>

<Percentage>19</Percentage></Term><Term Description="2003"><Value>541</Value>

<Percentage>22</Percentage></Term>

Page 28: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Presentation XSL Snippet

<xsl:template match="Five-Year-Enrollment"><table width="75%" border="0" cellpadding="0"

cellspacing="0" class="BackForBorder"><tr> <td><table width="100%" border="0" cellpadding="2"

cellspacing="1" class="verdana"><tr class="FrontForTableBurgundy"> <td colspan="5"><div align="center"><font

color="#FFFFFF"><strong>Five Year Enrollment History - Fall Terms</strong></font></div></td>

</tr><tr class="FrontForBodyTable"> <xsl:for-each select="Term"><td valign="bottom" align="center"><font size="-2"><xsl:choose><xsl:when test="Value='0'">NA</xsl:when><xsl:otherwise><xsl:value-of select="Value"/></xsl:otherwise></xsl:choose><br/><img

src="../../documents/graph/graph_vert_dark_khaki.aspx? height={Percentage}"/>

</font></td>

</xsl:for-each>

Page 29: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Presentation Graph Output

<script language="C#" runat="server"> void Page_Load(Object sender, EventArgs e) { Response.ContentType="image/jpeg";

string strHeight = Request.QueryString["height"];const int width=15;int height;

if (strHeight == "0") { height = 1; }else { height = 4 * Convert.ToInt16(strHeight); }

Bitmap objBitmap = new Bitmap(width, height);Graphics objGraphics = Graphics.FromImage(objBitmap);objGraphics.FillRectangle(new SolidBrush(Color.Black), 0, 0, width, height);objGraphics.FillRectangle(new SolidBrush(Color.DarkKhaki), 1, 1, width - 2, height - 2);objBitmap.Save(Response.OutputStream, ImageFormat.Jpeg);objGraphics.Dispose();objBitmap.Dispose();

}</script>

Page 30: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

How We Developed The Solution• Data Presentation Web Page

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="declared_majors_report.aspx.vb" Inherits="webapp_tools.declared_majors_report"%>

<!--DOCTYPE INFO--!><HTML><HEAD><title>KSU</title><!—META NAME INFO--!><!--STYLESHEET INFO--!"></HEAD>

<body><form id="Form1" method="post"

runat="server"><asp:Label ID="strR"

Runat="server"></asp:Label><asp:Xml ID="xmlR"

Runat="server"></asp:Xml><asp:Label ID="strT"

Runat="server"></asp:Label></form>

</body></HTML>

Page 31: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Impact

• New Demands– Technical proficiencies– Additional consumers

and requests– Data integrity

Page 32: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Impact

• Business Practices– Proactive vs. reactive– Transitioning to a

systems development orientation

– User education

Page 33: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

We’re Done

• Your Turn– Questions ?– Comments ?– Angry Outbursts ?

Page 34: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Contact Us

• Tomek Skurzak– IT Application Support

Professional IV– [email protected]

• Paul Hearn – IT Application Support

Professional IV– [email protected]

Page 35: Alabama Association for Institutional Research Annual Conference April 2007 Institutional Research: Is It Rocket Science?

Contact Us

• This Presentation Is Available Online– http://ir.kennesaw.edu– Click on “Professional

Presentations” in the left hand navigation menu