Intermediate ASP.NET Web Development with C# Instructor: Frank Stepanski. Data Sources on the Web

Size: px
Start display at page:

Download "Intermediate ASP.NET Web Development with C# Instructor: Frank Stepanski. Data Sources on the Web"

Transcription

1 Intermediate ASP.NET Web Development with C# Instructor: Frank Stepanski Data Sources on the Web Many websites on the web today are just a thin user interface shell on top of sophisticated data-driven code that reads and writes information from a database. Often, website users aren t aware (or don t care) that the information displayed originates from a database. They just want to be able to search your product catalog, place an order or check their payment records, etc. E-commerce web sites, such as Amazon and ebay, use databases to provide customers with product information, recommendations, and wish lists and to store feedback and orders. Portal web sites use databases to store articles and user settings, so users don t need to reset them each time they visit the web site. Benefits of Data-Driven Web Sites: 1. Maintenance: Using a database makes it a lot easier to maintain your data and keep it up-to-date. A website driven by a database usually has fewer web pages than a static web site since a data-driven site has web pages that are primarily templates which are filled on-the-fly. 2. Reusability: Information in databases can easily be backed up and reused elsewhere as required. Compared to static web sites where information can t be easily retrieved from the surrounding HTML layout. 3. Data context: Databases allow you to define relationships and rules for the data in your database. For example, you can create a rule in your database that says if you store some information on a book, you must include an author and an ISBN, which in turn must be valid. This will allow for specific criteria for searches to be made as well as the order. 4. Quality and timeliness of content: Databases are optimized for storage and retrieval of data and nothing else. They allow you to use and update information on a live web site almost in real time something that isn t possible with static web pages. Intermediate ASP.NET Web Development 1 of 23 Author: Frank Stepanski

2 Of course there are a few downsides, such as development time to write the code to access the database and time to populate the database with the information you require. Likewise it may take some planning initially to accommodate a database in the architecture of a web site. How Does a Web Site Retrieve the Data? Aside from everything else that ASP.NET may be doing in a page, the task of a page communicating with a data source takes a few steps: 1. The page tries to open communication to a database. The code tells the page which database and where it can be found. 2. The page sends a query to the database. Usually, it s a request for some data, but it could also be to update data, to add some new data or even to delete some data. 3. The database sends back some information that the page must then handle accordingly. If it s information for display on the page, it s rendered on the page or it may be confirmation from the database that it updated, inserted or deleted some data as you requested. Introducing ADO.NET So you have a set of pages that needs information and a data source to provide to it. You know that the web server will use the information to provide the page content and influence the way the page displays. You need to tell the page how to retrieve the content from the data source and what to do with it afterward. ADO.NET works directly with the database. ADO.NET gives you the ability to work with a data source through a common set of methods and interfaces (classes), regardless of what type of database it is. This is achieved through a set of data providers. SQL Server has both an ODBC and an OLE DB interface, Microsoft Access has an OLE DB interface and MySQL has an ODBC interface. That s one of the beauties of Intermediate ASP.NET Web Development 2 of 23 Author: Frank Stepanski

3 ADO.NET, as long as you know which data provider to use, you need to learn only one set of calls and every data provider supports that (Figure 1). Figure 1 List of ADO.NET data providers Almost every data provider has the same objects, methods and properties (apart from a few changes): Connection object: Used to represent the connection between the page and the data source. Command object: Used to represent the query to be sent to the database. Queries are much like functions and may use parameters filled at runtime rather than hard-coded values at compile-time. This reduces the chance of any security issues due to SQL Injection. To represent the parameters in a query, a data provider also includes a Parameter object. DataReader object: Used to represent the data returned by the data source as a forwardonly, use-once result of a query. Intermediate ASP.NET Web Development 3 of 23 Author: Frank Stepanski

4 DataAdapter object: Used to populate a DataSet with the results of a query. Unlike with the DataReader, once the results are added to a DataSet, you can access it as many times as you like and however you want. A DataSet uses disconnected data on the web server; it never works directly with a data source. Exception object: Used to allow your page to fail gracefully if something unexpected happens and lets you know in detail what went wrong. SQL Server Express SQL Server Express is a free, slimmed down version of the commercial SQL Server database. The main capabilities excluded from the free version are mainly the enterprise features which of course we will not use in this class. Download and install SQL Server 2008 Express, since most webhosts will have that version. If you webhost has an older version (2005), then install that version instead. Note: To install SQL Server 2008 Express and Management Studio Express it is best to use the web platform installer: Intermediate ASP.NET Web Development 4 of 23 Author: Frank Stepanski

5 SQL Server 2008 Express: SQL Server runs as a Windows service. So what is a service? A good example of a service is an antivirus software that runs continuously from when the user restarts a computer to the point that the computer shuts down. A program, on the other hand, is either loaded in memory and running, or not started. A service also has absolutely no user interface. There will be no form to display and no user input to deal with at run time. The only interaction with the process runs either through a separate user interface, which then links in to the service but is a totally separate unit of work. When installing SQL Server Express 2008: Server Configuration - Use the NT Authority\System account name Database Engine Configuration Use Windows authentication mode and add your Add Current User as server administrator SQL Server Management Studio Express Figure 2 - SQL Server Management Studio Express Intermediate ASP.NET Web Development 5 of 23 Author: Frank Stepanski

6 SSMS is the graphical user interface (GUI) you will use to run all of you queries and build your database solutions. SSMS helps you in the development of database solutions, including creating and modifying components of a database, amending the database itself, and dealing with security issues. It is an easy-to-use and intuitive tool, and before long, you will feel confident in using it to work with SQL Server quickly and efficiently. One of the useful tools within SSMS is the Query Editor. This tool allows program code to be written and executed, from objects, to commands that manipulate data, and even complete tasks such as backing up data. Query Editor is a tool within SSMS that allows you to programmatically build the same actions as dragging and dropping or using wizards. However, using T-SQL within Query Editor can give you more control over certain aspects of certain commands. Note that the name Query Editor comes from the fact that it sends queries to the database using T- SQL. Prebuilt Databases with SQL Server Express Several databases are installed and displayed when SQL Server is first installed Warning: Do not alter these databases! master The master database is at the heart of SQL Server, and if it should become corrupted, there is a very good chance that SQL Server will not work correctly. The master database contains the following crucial information: All logins, or roles, that the user IDs belong to Intermediate ASP.NET Web Development 6 of 23 Author: Frank Stepanski

7 Every system configuration setting (e.g., data sorting information, security implementation, default language) The names of and information about the databases within the server The location of databases How SQL Server is initialized A list of the available languages System error and warning messages tempdb The tempdb database is as its name suggests a temporary database whose lifetime is the duration of a SQL Server session; once SQL Server stops, the tempdb database is lost. When SQL Server starts up again, the tempdb database is re-created, fresh and new, and ready for use. model Whenever you create a database, it has to be modeled on a predefined set of criteria. For example, if you want all your databases to have a specific initial size or to have a specific set of information, you would place this information into the model database, which acts as a template database for further databases. If you want all databases to have a specific table within them, for example, then you would put this table in the model database. The model database is used as the basis of the tempdb database. msdb msdb is another crucial database within SQL Server, as it provides the necessary information to run jobs to SQL Server Agent. SQL Server Agent is a Windows service in Our Database: Players We will be using a small database throughout this class, so before we do anything we need to create it. Included in this week s files is a.sql file named CreateOurDatabase. This file is a SQL file that contains multiple SQL statements which will create our Players database. Intermediate ASP.NET Web Development 7 of 23 Author: Frank Stepanski

8 The easiest way to execute this file, is to first open Server Management Studio Express and then click the New Query button. This will open a new tabbed window (Figure 3) where you can copy and paste the entire contents of the CreateOurDatabase.sql file (you can open it up in notepad). Then all you need to do is click the Execute button. Then your Players database (Figure 4) will be created: Figure 3 Execute (CreateOurDatabase.sql) to create and populate the Players database Intermediate ASP.NET Web Development 8 of 23 Author: Frank Stepanski

9 Figure 4 Players database Note: To view the data in any one of the four tables in our Players database, all you have to do is rightclick a table, and select Edit Top 200 Rows. Intermediate ASP.NET Web Development 9 of 23 Author: Frank Stepanski

10 Tables: Manufacturer, Player, WhatPlaysWhatFormat and Format Quick Overview of a Relational Database Relational databases store all data as tables. Each of these tables represents a single, distinct subject: an object or an event. For example, a table may contain details of Manufacturing, fish or movies. In general, databases shouldn t store information about several types of objects or events (i.e. fish and movies) --- in the same table, unless the application of the database says otherwise. Every table contains a number of rows (records or tuples). Each row represents exactly one instance of the object event the table holds details about. Figure 5 Manufacturer table in Players database Intermediate ASP.NET Web Development 10 of 23 Author: Frank Stepanski

11 In Figure 5, each row in the Manufacturer table holds the details for exactly one Manufacturer. These details aren t duplicated or continued elsewhere in the table (i.e. normalization), so when you locate that particular row, it contains all the information you have on that Manufacturer. Every row contains a number of columns, also called attributes or fields. Each column contains a single piece of information indicated by the column s name. Like the name for a table, the name for a column should be as unambiguous as possible. Retrieving information from a table is reasonably simple, because every table must contain a column or a combination of columns that unique identifies any piece of data in the table. This means that it doesn t matter in what order you add rows to the table, because you ll still be able to identify them individually. When you re building a database table, you ll identify this column or combination of columns as the table s primary key. In Figure 5, the ManufacturerID column is the primary key to this table. Every table should have a primary key. It doesn t have to be an ID number (could be a social security number, etc.) but it does have to be unique and a required column for that database. Data-Bound Controls The data bound controls are a series of controls that allow the interactions with data sources to be handled without a single line of code. Instead of having to create Connection and Command objects in code, you can create an instance of the SQLDataSource control (by dragging it from the toolbox onto your page) and point it at a data source. Any data source can be accessed, as long as there s a data provider available for it. This control handles the interaction with the data source for you automatically. Intermediate ASP.NET Web Development 11 of 23 Author: Frank Stepanski

12 The GridView Control The GridView control can handle direct data source updates as long as the underlying data source object supports these capabilities. This virtually codeless two-way data binding is by far the most notable feature of the new GridView control, but other enhancements are numerous. The GridView control has the ability to define multiple primary key fields, new column types, and style and templating options. The GridView also has an extended eventing model that allows you to handle or cancel events such as inserting, deleting, updating, paging, and more. The ListView Control The ListView control is fully template-based and allows you to control all aspects of the user interface via templates and properties. The ListView control never creates any userinterface layout on its own. Every markup tag that the control emits is entirely under the developer s control, including header, footer, body, item, selected item, and so on. The FormView Control FormView can be considered the templated version of the DetailsView. It renders one record at a time, picked from the associated data source and, optionally, provides paging buttons to navigate between records. Unlike the DetailsView control, FormView doesn t use any internal generation of markup and requires the programmer to define the rendering of each item by using templates. The FormView can support any basic operation its data source provides. The FormView requires you to define everything through templates, not just the things you want to change. The FormView has no built-in rendering engine and is limited to printing out the user-defined templates. Intermediate ASP.NET Web Development 12 of 23 Author: Frank Stepanski

13 Foundation of the Data Binding Model ASP.NET data binding is built around a few properties that any data-bound control exposes. The actual data binding process starts when the page execution flow executes the method DataBind on the page or a particular control. For a control, performing a data binding action means updating its internal state to reflect the collection of values assigned to its bindable properties. Intermediate ASP.NET Web Development 13 of 23 Author: Frank Stepanski

14 The DataSource Property The DataSource property lets you specify the data source object the control is linked to. This link is logical and does not result in any overhead or underlying operation until you explicitly choose to bind the data to the control. This operation is triggered by calling the DataBind method. When the DataBind method executes, the control actually loads data from the associated data source, evaluates the data-bound properties (if any), and generates the markup to reflect changes. The DataSourceID Property The DataSourceID property gets or sets the ID of the data source component from which the data-bound control retrieves its data. This property is the point of contact between databound controls and a special family of controls the data source controls. The DataMember Property The DataMember property gets or sets the name of the data collection to extract when data binding to a data source. The DataTextField Property Typically used by list controls, the DataTextField property specifies which property of a data-bound item should be used to define the display text of the nth element in a list control. The DataValueField Property Similar to DataTextField, the DataValueField property specifies which property of a data-bound item should be used to identify the nth element in a list control: The DataKeyField Property The DataKeyField property gets or sets the key field in the specified data source. The property serves the need of some data list controls that allow item selection and master/detail views. Intermediate ASP.NET Web Development 14 of 23 Author: Frank Stepanski

15 Your First Data-Driven Page: Connecting Locally Drag the SQLDataSource control from the toolbox onto your ASP.NET page. This will allow you to connect to your SQL Server database. Once you configure this control, you can then use other data controls (GridView, DataList, DetailsView, ListView, etc) to render and format the data to the page Note: The Server Name, will be the server name created when you installed SQL Server Express The server name is displayed each time you open SQL Server Management Studio. Your server name will be different than mine. Intermediate ASP.NET Web Development 15 of 23 Author: Frank Stepanski

16 The SQLDataSource control creates a connection string for you. The connection string will tell your ASP.NET page information about your database (i.e. database type, the Provider and security information). The creation of this connection string is accomplished by just going through a few wizard-like steps in your control. Intermediate ASP.NET Web Development 16 of 23 Author: Frank Stepanski

17 SQL DataSource control: Select the Manufacturer table and all fields: Figure 6 Select all fields in the Manufacturers table Intermediate ASP.NET Web Development 17 of 23 Author: Frank Stepanski

18 SQL DataSource control: Test the query results Figure 7 Testing the SQLDataSource control results After you are finished the wizard has created this for you on your ASP.NET page: <asp:sqldatasource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=HOME-PC\SQLEXPRESS; Initial Catalog=Players; Integrated Security=True" ProviderName="System.Data.SqlClient" SelectCommand="SELECT [ManufacturerID], [ManufacturerName], [ManufacturerCountry], [Manufacturer ], [ManufacturerWebsite] FROM [Manufacturer]"></asp:SqlDataSource> Intermediate ASP.NET Web Development 18 of 23 Author: Frank Stepanski

19 Using a Data Control to Render Your Data Step 1: Take a GridView control and drag it to the page. Step 2: Click on the control and select SQLDataSource1 option Choose Data Source. You ll notice that the column names change to the columns retrieved in the generated SQL statement that was created by the SQLDataSource control. You can edit the names and other properties if you want by clicking edit columns. (Figure 9). Figure 8 Change column headings of GridView control Then you can test our your web page like you normally would do, and see the results: Intermediate ASP.NET Web Development 19 of 23 Author: Frank Stepanski

20 Figure 9 Viewing your web page data results of GridControl The Players Database on your Web Host When you create a database on your web host (every webhost is different - contact your host support if you are having issues), you will create a username and password for it. Figure 10 Web hosts database setup (mine is GoDaddy, but yours will be different) Note: If your web host allows for "direct access", it will allow you to access your database locally instead of only from your web host account. Intermediate ASP.NET Web Development 20 of 23 Author: Frank Stepanski

21 Populating the Players Database Online After you create your database online, you will need to execute the CreateOurDatabase_Online.sql to populate your online Players database (Figure 11). Figure 11a Web host SQL Server Admin (yours will be different) Figure 11b Executing the CreateOurDatabase_Online.sql Figure 11c Players database created online Intermediate ASP.NET Web Development 21 of 23 Author: Frank Stepanski

22 Updating the FirstPage.aspx for Remote Database Now, all you have to do is modify the results from your SQLDataSource control to your online database: <asp:sqldatasource ID="SqlDataSource1" runat="server" connectionstring="data Source=[Database hostname]; User ID=[database name];password=[password]" providername="system.data.sqlclient" SelectCommand="SELECT [ManufacturerID], [ManufacturerName], [ManufacturerCountry], [Manufacturer ], [ManufacturerWebsite] FROM [Manufacturer]"> </asp:sqldatasource> Or you can re-run the wizard and enter the new server name and username and password and have the generate the new code for you. Figure 12 Re-creating data source for remote database My version: Intermediate ASP.NET Web Development 22 of 23 Author: Frank Stepanski

23 Using Web.config to Store Database Connections A web.config is the main settings and configuration file for your ASP.NET web application. The file is an XML document that defines configuration information regarding the web application. The web.config file contains information that control module loading, security configuration, database connections, session state configuration, and application language and compilation settings. <?xml version="1.0"?> <configuration> <appsettings/> <connectionstrings> <add name="playersconnectionstring" connectionstring="data Source=[database hostname];initial Catalog=players; User ID=[database name;password=[password]" providername="system.data.sqlclient" /> </connectionstrings> <system.web> <!-- show errors --> <customerrors mode="off"/> <compilation debug="true" targetframework="4.0"/> </system.web> </configuration> Then we reference it in our SQLDataSource control like: <asp:sqldatasource ID="SqlDataSource1" runat="server" ConnectionString ="<%$ ConnectionStrings:playersConnectionString %>" SelectCommand ="SELECT [ManufacturerID], [ManufacturerName], [ManufacturerCountry], [ManufacturerWebsite], [Manufacturer ] FROM [Manufacturer]"> </asp:sqldatasource> My version: Copyrighted 2014 Frank Stepanski Used with Permission :: eclasses.org Lessons, files and content of these classes cannot be reproduced and/or published without the express written consent of the author. Intermediate ASP.NET Web Development 23 of 23 Author: Frank Stepanski

Tutorial #1: Getting Started with ASP.NET

Tutorial #1: Getting Started with ASP.NET Tutorial #1: Getting Started with ASP.NET This is the first of a series of tutorials that will teach you how to build useful, real- world websites with dynamic content in a fun and easy way, using ASP.NET

More information

Expanded contents. Section 1. Chapter 2. The essence off ASP.NET web programming. An introduction to ASP.NET web programming

Expanded contents. Section 1. Chapter 2. The essence off ASP.NET web programming. An introduction to ASP.NET web programming TRAINING & REFERENCE murach's web programming with C# 2010 Anne Boehm Joel Murach Va. Mike Murach & Associates, Inc. I J) 1-800-221-5528 (559) 440-9071 Fax: (559) 44(M)963 murachbooks@murach.com www.murach.com

More information

GoDaddy (CentriqHosting): Data driven Web Application Deployment

GoDaddy (CentriqHosting): Data driven Web Application Deployment GoDaddy (CentriqHosting): Data driven Web Application Deployment Process Summary There a several steps to deploying an ASP.NET website that includes databases (for membership and/or for site content and

More information

Visual COBOL ASP.NET Shopping Cart Demonstration

Visual COBOL ASP.NET Shopping Cart Demonstration Visual COBOL ASP.NET Shopping Cart Demonstration Overview: The original application that was used as the model for this demonstration was the ASP.NET Commerce Starter Kit (CSVS) demo from Microsoft. The

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

ASP.NET Overview. Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland

ASP.NET Overview. Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland ASP.NET Overview Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland Agenda Introduction Master Pages Data access Caching Site navigation Security: users and roles Themes/Skin

More information

Chapter 4 Accessing Data

Chapter 4 Accessing Data Chapter 4: Accessing Data 73 Chapter 4 Accessing Data The entire purpose of reporting is to make sense of data. Therefore, it is important to know how to access data locked away in the database. In this

More information

Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers

Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers Installation guide for administrators and developers Table of Contents Chapter 1 Introduction... 2 1.1 Preparing to Install Sitecore Ecommerce Enterprise Edition... 2 1.2 Required Installation Components...

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

1.264 Lecture 19 Web database: Forms and controls

1.264 Lecture 19 Web database: Forms and controls 1.264 Lecture 19 Web database: Forms and controls We continue using Web site Lecture18 in this lecture Next class: ASP.NET book, chapters 11-12. Exercises due after class 1 Forms Web server and its pages

More information

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB)

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Course Number: 70-567 UPGRADE Certification Exam 70-567 - UPGRADE: Transition your MCPD Web Developer Skills to MCPD ASP.NET

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

PDshop.NET Installation Guides (ASP.NET Edition)

PDshop.NET Installation Guides (ASP.NET Edition) PDshop.NET Installation Guides (ASP.NET Edition) PageDown Technology, LLC / Copyright 2003-2007 All Rights Reserved. Last Updated: 7/25/07 Written for Revision: 1.014 1 Table of Contents Table of Contents...2

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

O Reilly Media, Inc. 3/2/2007

O Reilly Media, Inc. 3/2/2007 A Setup Instructions This appendix provides detailed setup instructions for labs and sample code referenced throughout this book. Each lab will specifically indicate which sections of this appendix must

More information

Two new DB2 Web Query options expand Microsoft integration As printed in the September 2009 edition of the IBM Systems Magazine

Two new DB2 Web Query options expand Microsoft integration As printed in the September 2009 edition of the IBM Systems Magazine Answering the Call Two new DB2 Web Query options expand Microsoft integration As printed in the September 2009 edition of the IBM Systems Magazine Written by Robert Andrews robert.andrews@us.ibm.com End-user

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1 Hands-On Lab Web Development in Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: USING HTML CODE SNIPPETS IN VISUAL STUDIO 2010... 6 Task 1 Adding

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11

EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11 Contents I EventSentry Overview Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2 1 Downloads... 2 2 Installation... 3 3 Configuration... 7 Part III Setting up IIS 9 1 Installation... 9 Part

More information

Sophos Enterprise Console Auditing user guide. Product version: 5.2

Sophos Enterprise Console Auditing user guide. Product version: 5.2 Sophos Enterprise Console Auditing user guide Product version: 5.2 Document date: January 2013 Contents 1 About this guide...3 2 About Sophos Auditing...4 3 Key steps in using Sophos Auditing...5 4 Ensure

More information

MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005

MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005 MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005 Thom Luce, Ohio University, luce@ohio.edu ABSTRACT Information Systems programs in Business

More information

SecureAssess Local. Install Guide. www.btl.com. Release 9.0

SecureAssess Local. Install Guide. www.btl.com. Release 9.0 SecureAssess Local Install Guide Release 9.0 Document 1.0 15.11.10 www.btl.com Disclaimer Whilst every effort has been made to ensure that the information and content within this user manual is accurate,

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

More information

Application Development

Application Development Microsoft SQL Azure: Enterprise Application Development Build enterprise-ready applications and projects with SQL Azure Jayaram Krishnaswamy PUBLISHING BIRMINGHAM - MUMBAI Preface 1 Chapter 1: Cloud Computing

More information

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

More information

Polar Help Desk Installation Guide

Polar Help Desk Installation Guide Polar Help Desk Installation Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2012-02-17 Sitecore E-Commerce Services 1.2 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring Sitecore

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT AGENDA 1. Introduction to Web Applications and ASP.net 1.1 History of Web Development 1.2 Basic ASP.net processing (ASP

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Esigate Module Documentation

Esigate Module Documentation PORTAL FACTORY 1.0 Esigate Module Documentation Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels to truly control

More information

ODBC (Open Database Communication) between the ElevateDB Database and Excel

ODBC (Open Database Communication) between the ElevateDB Database and Excel ODBC (Open Database Communication) between the ElevateDB Database and Excel The ElevateDB database has the powerful capability of connection to programmes like Excel and Word. For this to work a driver

More information

www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails

www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

Working with SQL Server Agent Jobs

Working with SQL Server Agent Jobs Chapter 14 Working with SQL Server Agent Jobs Microsoft SQL Server features a powerful and flexible job-scheduling engine called SQL Server Agent. This chapter explains how you can use SQL Server Agent

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2011-05-19 Sitecore E-Commerce Fundamental Edition 1.1 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

Author: Ryan J Adams. Overview. Policy Based Management. Terminology

Author: Ryan J Adams. Overview. Policy Based Management. Terminology Author: Ryan J Adams Overview We will cover what Policy Based Management is and how you can leverage its power to better manage your environment. With PBM we'll see what it can and cannot do to help you

More information

Log Analyzer Reference

Log Analyzer Reference IceWarp Unified Communications Log Analyzer Reference Version 10.4 Printed on 27 February, 2012 Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 3 Advanced Configuration...

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual

More information

IceWarp Server. Log Analyzer. Version 10

IceWarp Server. Log Analyzer. Version 10 IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio Introduction... 3 Integration with Visual Studio

More information

Building A Very Simple Website

Building A Very Simple Website Sitecore CMS 6.5 Building A Very Simple Web Site Rev 110715 Sitecore CMS 6.5 Building A Very Simple Website A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating

More information

SQL Server Database Web Applications

SQL Server Database Web Applications SQL Server Database Web Applications Microsoft Visual Studio (as well as Microsoft Visual Web Developer) uses a variety of built-in tools for creating a database-driven web application. In addition to

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Microsoft Office SharePoint Designer 2007

Microsoft Office SharePoint Designer 2007 Microsoft Office SharePoint Designer 2007 February 2006 Table of Contents Overview of Microsoft Office SharePoint Designer 2007... 1 Build SharePoint Applications Quickly, Without Writing Server Code...

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

1. Please login to the Own Web Now Support Portal (https://support.ownwebnow.com) with your email address and a password.

1. Please login to the Own Web Now Support Portal (https://support.ownwebnow.com) with your email address and a password. Web Hosting Introduction The purpose of this Startup Guide is to familiarize you with Own Web Now's Web Hosting. Own Web Now offers two web hosting platforms, one powered by Linux / PHP and the other powered

More information

AUTHENTICATION... 2 Step 1:Set up your LDAP server... 2 Step 2: Set up your username... 4 WRITEBACK REPORT... 8 Step 1: Table structures...

AUTHENTICATION... 2 Step 1:Set up your LDAP server... 2 Step 2: Set up your username... 4 WRITEBACK REPORT... 8 Step 1: Table structures... AUTHENTICATION... 2 Step 1:Set up your LDAP server... 2 Step 2: Set up your username... 4 WRITEBACK REPORT... 8 Step 1: Table structures... 8 Step 2: Import Tables into BI Admin.... 9 Step 3: Creating

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Essential Visual Studio Team System

Essential Visual Studio Team System Essential Visual Studio Team System Introduction This course helps software development teams successfully deliver complex software solutions with Microsoft Visual Studio Team System (VSTS). Discover how

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 1.90 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...

More information

Getting to Know the SQL Server Management Studio

Getting to Know the SQL Server Management Studio HOUR 3 Getting to Know the SQL Server Management Studio The Microsoft SQL Server Management Studio Express is the new interface that Microsoft has provided for management of your SQL Server database. It

More information

ASP.NET Using C# (VS2012)

ASP.NET Using C# (VS2012) ASP.NET Using C# (VS2012) This five-day course provides a comprehensive and practical hands-on introduction to developing applications using ASP.NET 4.5 and C#. It includes an introduction to ASP.NET MVC,

More information

System Administration and Log Management

System Administration and Log Management CHAPTER 6 System Overview System Administration and Log Management Users must have sufficient access rights, or permission levels, to perform any operations on network elements (the devices, such as routers,

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

bitmedia Access 2007 Basics Entry test Database Basics Entry test Basic database terms What is Access 2007? Tables and indexes

bitmedia Access 2007 Basics Entry test Database Basics Entry test Basic database terms What is Access 2007? Tables and indexes bitmedia Access 2007 Basics Databases such as Access are often considered by some to live in the shadows of the Microsoft Office Package. This is, as we hope to demonstrate in the course of this module,

More information

CPM 5.2.1 5.6 release notes

CPM 5.2.1 5.6 release notes 1 (18) CPM 5.2.1 5.6 release notes Aditro Oy, 2014 CPM Release Notes Page 1 of 18 2 (18) Contents Fakta version 5.2.1. version 1.2.1... 3 Fakta version 5.2.1.1038 sp1 version 1.2.1.300 sp1... 4 Fakta version

More information

Reporting Services. White Paper. Published: August 2007 Updated: July 2008

Reporting Services. White Paper. Published: August 2007 Updated: July 2008 Reporting Services White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 Reporting Services provides a complete server-based platform that is designed to support a wide

More information

UltraLog HSPI User s Guide

UltraLog HSPI User s Guide UltraLog HSPI User s Guide A HomeSeer HS2 plug-in to store and retrieve HomeSeer and syslog events Copyright 2013 ultrajones@hotmail.com Revised 01/27/2013 This document contains proprietary and copyrighted

More information

Migrating to Azure SQL Database

Migrating to Azure SQL Database Migrating to Azure SQL Database Contents Azure account required for lab... 3 SQL Azure Migration Wizard Overview... 3 Provisioning an Azure SQL Database... 4 Exercise 1: Analyze and resolve... 8 Exercise

More information

SELF SERVICE RESET PASSWORD MANAGEMENT DATABASE REPLICATION GUIDE

SELF SERVICE RESET PASSWORD MANAGEMENT DATABASE REPLICATION GUIDE SELF SERVICE RESET PASSWORD MANAGEMENT DATABASE REPLICATION GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in

More information

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

ACCESSING IBM iseries (AS/400) DB2 IN SSIS

ACCESSING IBM iseries (AS/400) DB2 IN SSIS ACCESSING IBM iseries (AS/400) DB2 IN SSIS May 2011 Level: By : Feri Djuandi Beginner Intermediate Expert Platform : MS SQL Server 2008 R2 Integration Services, IBM iseries DB2 V6R1 The SQL Server Integration

More information

Advanced BIAR Participant Guide

Advanced BIAR Participant Guide State & Local Government Solutions Medicaid Information Technology System (MITS) Advanced BIAR Participant Guide October 28, 2010 HP Enterprise Services Suite 100 50 West Town Street Columbus, OH 43215

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

ADO and SQL Server Security

ADO and SQL Server Security ADO and SQL Server Security Security is a growing concern in the Internet/intranet development community. It is a constant trade off between access to services and data, and protection of those services

More information

Cache Configuration Reference

Cache Configuration Reference Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

A Tutorial on SQL Server 2005. CMPT 354 Fall 2007

A Tutorial on SQL Server 2005. CMPT 354 Fall 2007 A Tutorial on SQL Server 2005 CMPT 354 Fall 2007 Road Map Create Database Objects Create a database Create a table Set a constraint Create a view Create a user Query Manage the Data Import data Export

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

Installation and Operation Manual Unite Log Analyser

Installation and Operation Manual Unite Log Analyser Installation and Operation Manual Unite Log Analyser Contents 1 Introduction... 3 1.1 Abbreviations and Glossary... 4 2 Technical Solution... 4 2.1 Requirements... 5 2.1.1 Hardware... 5 2.1.2 Software...

More information

Installing SQL Express. For CribMaster 9.2 and Later

Installing SQL Express. For CribMaster 9.2 and Later Installing SQL Express For CribMaster 9.2 and Later CRIBMASTER USER GUIDE Installing SQL Express Document ID: CM9-031-03012012 Copyright CribMaster. 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,

More information

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

ASP.NET Programming with C# and SQL Server

ASP.NET Programming with C# and SQL Server ASP.NET Programming with C# and SQL Server First Edition Chapter 8 Manipulating SQL Server Databases with ASP.NET Objectives In this chapter, you will: Connect to SQL Server from ASP.NET Learn how to handle

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Nexio Connectus Cluster Set Up with SQL Server Backend

Nexio Connectus Cluster Set Up with SQL Server Backend Nexio Connectus Cluster Set Up with SQL Server Backend 2.1.2 3/20/2014 Edition: A 2.1.2 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers

More information

Staying Organized with the Outlook Journal

Staying Organized with the Outlook Journal CHAPTER Staying Organized with the Outlook Journal In this chapter Using Outlook s Journal 362 Working with the Journal Folder 364 Setting Up Automatic Email Journaling 367 Using Journal s Other Tracking

More information

Using the SimNet Course Manager

Using the SimNet Course Manager Using the SimNet Course Manager Using the SimNet Course Manager Contents Overview...3 Requirements...3 Navigation...3 Action Menus...3 Sorting Lists...4 Expanding and Collapsing Sections...4 Instructor

More information

SQL DATABASE PROGRAMMING (PL/SQL AND T-SQL)

SQL DATABASE PROGRAMMING (PL/SQL AND T-SQL) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Programming SQL DATABASE PROGRAMMING (PL/SQL AND T-SQL) WHO AM I? Michael Kremer Currently: Federal Reserve Bank San Francisco

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information