ILTA UNIVERSITY Looking Into the New and Improved Functionality of Microsoft SQL 2008

Size: px
Start display at page:

Download "ILTA UNIVERSITY Looking Into the New and Improved Functionality of Microsoft SQL 2008"

Transcription

1 Looking Into the New and Improved Functionality of Microsoft SQL 2008

2

3 Table of Contents About this lab... 2 About the Laboratory Environment... 2 Lab 1: SQL Server Management Studio Exercise 1. Explore the SSMS 2008 User Interface... 3 Lab 2: Migrating Databases to SQL Exercise 1. Use Copy Database Wizard to Upgrade a SQL 2005 Database Lab 3: SQL 2008 T SQL, Full Text, and CDC Features Exercise 1. Using Intellisense with Transact SQL Exercise 2. Using Full Text Indexing in SQL Exercise 3. Configuring the Change Data Capture Feature in SQL Lab 4: SQL 2008 Reporting Services Exercise 1. Configure SQL Server Reporting Services Exercise 2. Install SQL Report Builder Exercise 3. Create a simple report using Report Builder Exercise 4. Updating our Chart Exercise 5. Manage Report Subscriptions Lab 5: Explore Policy Based Management Framework Exercise 1. Create and Evaluate a New Policy Exercise 2. Backup the ILTADOCS Database and ReEvaluate our Policies ILTA09 SQL2008 University Lab Session Page 1

4 About this lab This Laboratory session is designed to familiarize you with the some of the new features of Microsoft SQL Server We will take you through the latest interface features of SQL 2008, migrate legacy SQL databases, setup maintenance plans, and explore the new reporting module. Finally, we will setup a SQL Server policy to enforce corporate standards on the SQL environment. This laboratory is targeted for the desktop administrator, and assumes that the participant has general experience with Microsoft SQL Server technologies. While experience with SQL 2000 or SQL 2005 is helpful, it is not required to complete the lab exercises. About the Laboratory Environment You will be working in teams of two, sharing a workstation between members. The workstation has been configured with Virtual Server 2007 in order to house the virtual servers required for this lab. We have configured two virtual machines as follows: SQLLAB: A Windows 2008 Server, with SQL Server 2008 preinstalled. This is the primary virtual machine that you will be using throughout this lab. SQL2005: A Windows 2003 SP2 Server, with SQL Server 2005 preinstalled. This virtual machine needs to be running in the background to complete the database migration exercises. Both virtual machines have been setup in a Workgroup environment and exist on the same network. Notes: You should use the administrator account for the laboratory tasks, except where noted. The password for administrator is Ilta09. DO NOT USE THE CTRL-ALT-DEL KEY SEQUENCE, AS IT WILL DISRUPT YOUR VIRTUAL SERVER SESSION. You should use the RIGHT ALT-DEL key sequence instead. ILTA09 SQL2008 University Lab Session Page 2

5 Lab 1: SQL Server Management Studio 2008 SQL Server Management Studio (SSMS) is an integrated environment for accessing, configuring, managing, administering, and developing all components of SQL Server. SSMS combines a broad group of graphical tools with a number of rich script editors to provide access to SQL Server to developers and administrators. In this lab, we explore some of the new features of SSMS Exercise 1. Explore the SSMS 2008 User Interface a. Launch the SQL Server Management Studio by clicking Start => All Programs => Microsoft SQL Server 2008 => SQL Server Management Studio. b. Fill in the Connect to Server form as follows: Server Type Database Engine Authentication Login Password Remember Password Database Engine SQLLAB SQL Server Authentication sa Ilta09 checked Click Connect when finished. ILTA09 SQL2008 University Lab Session Page 3

6 c. The SQL Server Management Studio is the main application that is used to manage your SQL environment. Let s begin exploring the interface by opening up the databases node, which contains all the databases that this SQL server houses. Double Click SQLLAB => Databases => System Databases to look at the system databases for this native installation of SQL ILTA09 SQL2008 University Lab Session Page 4

7 d. Click View => Object Explorer Details to see a list of all of the system databases on the right hand pane. Notice that the Object Explorer Details pane now provides a columnar view of the databases. Right click on the column headings in order to see all of the available options to display in this view. ILTA09 SQL2008 University Lab Session Page 5

8 Deselect the following items: Policy Health State, Compatibility Level, and Owner. Select the following items: Size, Last Backup Date, and Space Available. You can rearrange or resize the columns as you see fit, such as in the following screenshot. Furthermore notice that you can now see a view into all of your databases, their current size, the last backup operation, and the amount of space left in the databases all in one screen! ILTA09 SQL2008 University Lab Session Page 6

9 e. Searching for database objects, such as stored procedures, triggers, views, or tables is much easier to do in SQL 2008 than in previous versions of MSSQL. To execute a search, simply type a search term in the Search field in the Object Explorer Details screen. Try this, enter the search term %JOBS% in the Search field, and then hit ENTER to execute the search. You should see a list of stored procedures similar to the graphic below. This feature is very helpful if you are looking for a specific object, but you are not sure which database it exists in. ILTA09 SQL2008 University Lab Session Page 7

10 f. It is now easier to view common information in your SQL databases from the SSMS interface. Let s take a look at some of these improvements in our Master database. Double click the Master => Views => System Views. Scroll down and right click the sys.databases view. Note that there is now a feature to select the top 1000 rows, or edit the top 200 rows. This is a great way to see or edit the contents of a table without inadvertently opening up tens of thousands of rows or locking the entire table. These options are also configurable if you want to return a different number of rows for selecting or editing. Go ahead and click the Select Top 1000 Rows option. Notice that the SQL Query that returns the Top 1000 Rows is automatically formulated in the query screen, with the results in the results pane. ILTA09 SQL2008 University Lab Session Page 8

11 g. SSMS now supports custom colors for different connection types. While color coding a status bar may seem like a superficial feature, it is actually quite useful in terms of categorizing server types, highlighting important servers, or separating servers from the production and development environment. To Setup custom colors, you need to edit the connection properties to your SQL Server(s). We will create a new connection to our SQLLAB Server to show the custom colors features. Begin by clicking View => Registered Servers. Expand Database Engine => Local Server Groups. Right Click Local Server Groups, and select New Server Registration. Fill out the form as follows: Server Name Authentication Login Password Remember Password Registered Server Name SQLLAB SQL Server Authentication sa Ilta09 Checked SQLLAB2 ILTA09 SQL2008 University Lab Session Page 9

12 Click the Connection Properties tab, and click the Use custom color option. Click Select, and then select a red color. Click Save when finished. NOTE: There are now two SQL Server registrations for the same server (SQLLAB). h. Let s test out our new custom color. Right Click the SQLLAB2 and click New Query. Enter a password of Ilta09, and click Connect. Note that the status bar in SSMS is now highlighted in red. Now right click the sqllab server, and click New Query. Notice that the new query status bar is highlighted in yellow (the default). This has some benefits since you can easily distinguish between servers when running queries. i. SSMS 2008 supports a nifty feature where you can run SQL Queries on multiple servers at the same time. To do this, right click the Local Server Group and select New Query. Please note that the Local Server group contains two SQL Registrations, both to the same server. We are using the same server in this exercise for illustrative purposes. ILTA09 SQL2008 University Lab Session Page 10

13 j. In the New Query window, type in the following SQL Query: Select * from sysdatabases k. Click the Execute button to run the query. Notice that the query is returned with a column heading of Server Name. We will be taking a closer look at some of the new features of Transact SQL queries in a later exercise. ILTA09 SQL2008 University Lab Session Page 11

14 l. The Activity Monitor in SQL 2008 has also been enhanced. Let s take a quick look at some of the new features. Click the Object Explorer tab at the bottom of the SSMS. Right Click the SQLLAB server, and then choose Activity Monitor. Note that you can now see the overall health of the server, locked processes, and resource intensive queries. ILTA09 SQL2008 University Lab Session Page 12

15 Lab 2: Migrating Databases to SQL 2008 There are several methods of bringing your databases into SQL 2008: Backup your database in SQL 2000 or SQL 2005, and restore them on SQL Perform an in place upgrade on the SQL Server where your databases exist. Use the Copy Database Wizard. In this lab, we will be using the Copy Database Wizard to migrate and upgrade a SQL 2005 database to our new SQL 2008 environment. Exercise 1. Use Copy Database Wizard to Upgrade a SQL 2005 Database In this exercise we will use the SQL 2008 Copy Database Wizard to copy and upgrade a database to our SQL 2008 server. For the purposes of this lab, we have created a sample database called ILTADOCS. This database currently resides on a SQL 2005 server called SQL2005. a. If you haven t done so, launch Microsoft SQL Server Management Studio by clicking Start => All Program => Microsoft SQL Server 2008 => Microsoft SQL Server Management Studio. b. Launch the Copy Database Wizard by right clicking the Management folder and clicking Copy Database The Copy Database Wizard should launch. ILTA09 SQL2008 University Lab Session Page 13

16 c. Click Next. The Select a Source Server screen should now display. We would like to migrate the ILTADOCS database from the SQL2005 Source Server. For the source server, type in SQL2005. Click the Use SQL Server Authentication radio button, and type in sa for the username and Ilta09 for the password. d. Click Next. The Select a Destination Server dialog should now display. We would like to migrate this database to our newly installed SQL 2008 server. Type in SQLLAB for the Source server. Leave the Use Windows Authentication radio button checked. ILTA09 SQL2008 University Lab Session Page 14

17 e. Click Next. In the Select a Transfer Method dialog box, click the Use the SQL Management Object Method radio button. While the detach/attach method of migrating databases works well, it requires that the source database be taken off line. f. Click Next. Click the Copy Checkbox next to the ILTADOCS database. ILTA09 SQL2008 University Lab Session Page 15

18 g. Click Next. The Destination Database dialog now shows you how the ILTADOCS database will look on the new server after migration. h. Click Next. The Server Objects dialog lets you select additional objects for migration. In our case, we do not want to migrate any other objects. ILTA09 SQL2008 University Lab Session Page 16

19 i. Click Next. In the Configure the Package dialog, we can choose how to name our package, and how to record logging for the package. The package created will be responsible for performing the database migration. The defaults will work fine for our lab. j. Click Next. Now we have the opportunity to schedule when this job should run. In our case we want to run this package immediately. ILTA09 SQL2008 University Lab Session Page 17

20 k. Click Next. l. Click Finish to begin the migration. m. Close the Databases folder and then re open. The ILTADOCS database should now be there (Note: you may need to force a refresh by right clicking on the Databases folder and selecting Refresh). ILTA09 SQL2008 University Lab Session Page 18

21 Lab 3: SQL 2008 T-SQL, Full Text, and CDC Features In this lab, we will look at some of the enhancements and features that SQL 2008 brings to the table. We will primarily use the ILTADOCS database that we migrated in the previous lab for most of these exercises. The ILTADOCS database contains a simplified set of tables that loosely resembles the content that one would find in a typical document management system. We have defined 4 different tables to represent metadata for documents as follows: If you have little familiarity with database design, the above figure may seem confusing. To give a quick summary, there is a primary table called Documents which contains the metadata (i.e., DocNumber, DocName, etc) for each document record. For the Client, Matter, and Author columns, there is a relationship to the Client, Matter, and DocUsers table. Finally, there is relationship between the Client and Matter table as well. Exercise 1. Using Intellisense with Transact SQL Writing Transact SQL queries in previous versions of SQL was often a disorganized, error prone process, which may have resulted in unexpected or even disastrous consequences. Proper syntax, using the correct terminology, and remembering the objects within our database schema were all difficult issues to overcome when writing queries. ILTA09 SQL2008 University Lab Session Page 19

22 IntelliSense is a new feature of SQL 2008 which makes it easier to compose, read, and organize your SQL Queries. Some of the features of IntelliSense include: Completing words as they are typed in a variable, command, or function once enough characters are typed so that it they can be uniquely identified. Listing the available parameters required by a function or stored procedure. Opening a list that provides available database objects and user defined variables that you have previously declared. We are going to write a few sample queries to look at these features. a. If you haven t done so, launch Microsoft SQL Server Management Studio by clicking Start => All Program => Microsoft SQL Server 2008 => Microsoft SQL Server Management Studio. b. Navigate to the ILTADOCS database by double clicking it in SSMS. Click the New Query button on the toolbar to open up a new query window. c. Let s say we wanted to select some data from our documents table, but we weren t sure which columns existed in the table. Begin by typing the following SQL Statement: Select from Documents D Note that when you started to type the statement, Intellisense began suggesting possible valid objects to you. This is especially helpful when typing out the word Documents. This is not a complete SQL statement, as we haven t selected any columns to return. We have only provided an alias for the Documents table, D. d. Go back in your statement before the word from, and type in the Alias D. Typing in the table alias automatically brings up all of the columns of the table! Let s choose DocName from the list. After selecting DocName, enter a comma, and use the same alias to select Type from the list. Your query should look as follows: ILTA09 SQL2008 University Lab Session Page 20

23 SELECT D.docname, D.type from Documents D Click the Execute Query button to run the query. You should now see a list of the document names and their types in our table. Note the different document types. e. Let s refine our query so we only see the pleadings by using a where clause. Go back to your previous query, and press ENTER after the last D to start a new line. Type in: WHERE D.type= PLEAD f. Notice that Intellisense automatically grouped the two lines in the statement together, making it easier to read. Execute the query when complete. g. Finally, let s write a slightly more complex SQL query to see how Intellisense can help us out. We will design a query that joins the documents, matter, and client tables to extract information. Erase your previous query, and type in the following: SELECT D.docname, D.docnumber, C.clientname, M.mattername from Documents D INNER JOIN Matter M on D.matter = M.matterID and D.client = M.parentID INNER JOIN Client C on D.client = C.clientID Intellisense should have helped you pick the correct columns in our database, helped organize the query, and highlighted any typos. Exercise 2. Using Full Text Indexing in SQL 2008 SQL Server 2008 provides the functionality for applications and users to issue full text queries against character based data in SQL Server tables. These queries can include word or phrase searching, through a variety of data types. Although databases in SQL Server 2008 are full text enabled by default, you must set up full text indexing capability on the columns of the tables that you want to access using the Full Text Engine. In this exercise, we will create a full text index for our documents table, and then run queries against them. a. The first step is to create a Full Text catalog on our ILTADOCS database. A full text catalog is a logical concept that refers to a group of full text indexes for a specific database. If you haven t done so already, open up a query window by clicking the ILTADOCS database, and clicking the New Query button. b. To create a catalog, type in the following in the query window: CREATE FULLTEXT CATALOG ILTADOCSFT Click the Execute button to create the Full Text Catalog named ILTADOCSFT ILTA09 SQL2008 University Lab Session Page 21

24 c. Another requirement in creating full text search is that the table must contain a unique, single column, non nullable index. The Full Text Engine requires this unique index to map each row in the table to a unique, compressible key. Unfortunately the Documents table does currently not contain a unique index. To create an index on our table, erase the contents in the query window, and type the following: CREATE UNIQUE INDEX ui_docnumber ON Documents(DocNumber) Click the Execute button to create the unique index on DocNumber column in our Documents table. Open Tables => DBO.Documents => Indexes and you should see the ui_docnumber index. d. We are now ready to create our full text index. Erase the contents in the query window, and type the following: CREATE FULLTEXT INDEX ON Documents ( DocName, Author,Type ) KEY INDEX ui_docnumber ON ILTADOCSFT WITH CHANGE_TRACKING AUTO This statement will create a full text index on the Documents table, indexing the DocName, Author, and Type columns. We have configured the index to automatically populate and update by setting the Change_Tracking feature to Auto. Click the Execute button to create the Full Text Index. e. Now that we have created a full text index, we can run a simple full text queries against it. Erase the previous query, and type the following in the query window: SELECT * FROM Documents WHERE FREETEXT(*, 'Criminal') Click the Execute button to run the query. You should have a number of results with the word Criminal in the document name. ILTA09 SQL2008 University Lab Session Page 22

25 Exercise 3. Configuring the Change Data Capture Feature in SQL 2008 Change data capture (CDC) is a new feature of SQL 2008 that records insert, update, and delete activity applied to SQL Server tables. SQL 2008 activity that is tracked is written to a mirrored table, which can easily be queried. This feature can be particularly useful in Document Management environments where you need to record activity that is not natively handled by the software. In this lab, you will enable and configure Change Data Capture and perform the activities to monitor how the data capture process works. a. The first thing we will need to do is enable Change Data Capture in our database. If you haven t done so already, open up a query window by clicking the ILTADOCS database, and clicking the New Query button. b. To create a catalog, type in the following in the query window: EXEC sp_cdc_enable_db Click the Execute button to enable change data capture. c. In SSMS, open up the ILTADOCS database, and navigate Tables => System Tables. Under System Tables, you will now notice that there are several tables devoted to the CDC feature. d. We are now ready to enable CDC on our documents table. To do so, erase the previous query, and type in the following: EXEC = = = N'cdc_Admin' Click the Execute button to enable CDC on the documents table. e. Now that we ve enabled CDC, let s see it in action. The first thing we will do is insert a new row in our table. To do so, delete the previous query, and type in: INSERT INTO Documents values (2000,'CDC Test Document Name','', '', '', '', '', '') Click the Execute button to insert a new row in our Documents table. ILTA09 SQL2008 University Lab Session Page 23

26 f. Let s delete that document we just created. To do so, delete the previous query, and type in: DELETE FROM DOCUMENTS WHERE DOCNUMBER = 2000 Click the Execute button to delete the document we just inserted. g. Let s see what the CDC has recorded in terms of our changes to our documents table. Delete the previous query, and type in: SELECT * FROM CDC.DBO_DOCUMENTS_CT Click the Execute button to look at the contents of the Documents CDC table. You should now see two results one for the insert, and one for the deletion. Note: For the $operation column, 1 refers to a delete, 2 is an insert, 3 is the before image of an update, and 4 is the after image of an update. SELECT statements are not captured. ILTA09 SQL2008 University Lab Session Page 24

27 Lab 4: SQL 2008 Reporting Services SQL Server Reporting Services (SSRS) is a server based report generation tool that ships with SQL Server SSRS can be used to author and generate many different types of reports within your SQL databases. You can also use SSRS to e mail, subscribe, or create ad hoc reports. In this lab, we will configure SQL Server Reporting Services and create reports to highlight some of the new features of SQL Exercise 1. Configure SQL Server Reporting Services Before authoring reports in SSRS, we first need to configure some of the components to ensure proper connectivity. In this exercise, you will use Reporting Services Configuration Manager to view and configure Reporting Services settings. Reporting Services Configuration Manager provides a comprehensive configuration tool that you can use to manage all aspects of the Reporting Services configuration. a. Launch the SQL Server Reporting Configuration by clicking Start => All Programs => Microsoft SQL Server 2008 => Configuration Tools => Reporting Services Configuration Manager. The Connection Dialog should now launch. ILTA09 SQL2008 University Lab Session Page 25

28 b. Choose the default options and click Connect. The Reporting Services Configuration Manager should now launch. c. Within this dialog, you can configure many aspects of Reporting Services, such as encryption, E Mail, the Reporting Services database, and scaling out the Reporting Engine. In this case, we want to verify the Web Service URL is setup correctly so we can manage reports via a web client. Click the Web Service URL in the left hand pane and verify that it points to d. The Report Manager URL is where users can log in to create, modify, or view reports. Click on the Report Manager URL link in the left hand pane, and verify that URLs: is set for ILTA09 SQL2008 University Lab Session Page 26

29 e. Click the E Mail Settings link in the left hand pane to setup E Mail connectivity. Enter the E Mail settings as follows: Sender Address Current SMTP Delivery Address SMTP Server administrator@ilta09.com Use SMTP Server SQLLAB f. Click Apply when finished. You may now exit the Configuration Manager by clicking Exit. g. We now need to make sure our SMTP Virtual Server is started to ensure correct E Mail connectivity. To do so, launch Internet Information Services 6.0 by clicking Start => Administrative Tools => Internet Information Services (IIS) 6.0 Manager. h. Open up the SMTP Virtual Server by opening up the SQLLAB node. Check to see if the SMTP Virtual Server is started if there is a red X, it is stopped. If so, start it by rightclicking the SMTP Virtual Server, and then clicking Start. ILTA09 SQL2008 University Lab Session Page 27

30 i. You can now Exit out of IIS 6.0. Now that we ve updated and verified our settings, we are ready to create our first report. Exercise 2. Install SQL Report Builder 2.0 The SQL Report Builder 2.0 is an add on feature to SQL Server 2008 that provides an intuitive report authoring environment for users. It has been specifically enhanced to take advantage of many of the SQL Server 2008 reporting capabilities. a. Install SQL Report Builder 2.0 by navigating to the installation files. Launch Windows Explorer by clicking Start => All Programs => Accessories => Windows Explorer. Click the Computer icon, and navigate to the C:\Lab Files\ReportBuilder directory. Once there, double click the ReportBuilder installer file, followed by Run to begin installation. b. Click Next, click the I Accept radio button, click Next, Next, Next. c. For the Default target server URL line, enter This is the URL that was referenced in the previous exercise. Click Next to continue. ILTA09 SQL2008 University Lab Session Page 28

31 d. Click Install to begin the installation. e. When the Installation completes, click Finish. Exercise 3. Create a simple report using Report Builder 2.0 Now that we have install Report Builder 2.0, we will begin to create a simple report against our sample database, ILTADOCS. a. Launch Report Builder by clicking Start => All Programs => Microsoft SQL Server 2008 Report Builder 2.0 => Report Builder 2.0. b. We will create a chart view report that shows all of the users in the database, followed by how many documents each has authored, grouped by the types of documents. Click the Chart link within the editing window to launch the Chart Wizard. c. We first need to create a data source to our ILTADOCS database. To do so, click the New button. ILTA09 SQL2008 University Lab Session Page 29

32 d. For the Datasource Name, type in ILTADOCS. Click the Build button to create a connection string to our ILTADOCS database. e. In the Connection Properties Screen, type in SQLLAB for the server name, select the SQL Server Authentication radio button, and type in sa for the user account, and Ilta09 for the password. Make sure the Save my Password option is checked. In the Connect to a database section, click the drop down arrow in the select or enter a database name option, and choose the ILTADOCS database. Click OK when finished. Your Datasource Properties should look like the above picture. If not, repeat steps d and e in this section. Once everything looks fine, click Credentials in the left hand pane. ILTA09 SQL2008 University Lab Session Page 30

33 f. We now specify that the logged in user will be used to connect to the database. Click the use this user name and password option. Use sa for the user name and Ilta09 for the password. g. Click OK when finished. You will now go back to the Choose a connection to a data source screen. Click the data source that you just selected, and click Next to go to the Design a query dialog. ILTA09 SQL2008 University Lab Session Page 31

34 h. We will now create a simple query for our report. Expand the dbo node, followed by the Tables node, and select the Documents table. Select only the following column names: DocNumber, Author, and Type. Click the Run Query button to verify that the correct data is being returned. Click Next. i. Choose a Column chart in the Chart Type dialog, and click Next. ILTA09 SQL2008 University Lab Session Page 32

35 j. Drag the Author field to the Categories section, Type in the series section, and the DocNumber field to the Values section. Click the Drop Down arrow next to the DocNumber field you just dragged, and change it to Count. Click Next. k. Click Ocean for the chart style. And click Finish. ILTA09 SQL2008 University Lab Session Page 33

36 l. Congratulations! You finished your first report! Click the Run button on the main toolbar in the upper left hand side to verify your results. As you can see, the chart still needs a little tweaking. We will be updating this report in the next exercise. Exercise 4. Updating our Chart Now that we have a basic report created, we need to make some modifications to make it more readable. a. If you are not there yet, go to the design view of the chart by clicking the Design button on the toolbar. b. The first thing we need to do is enlarge our chart. Click the middle of the chart to highlight it. Drag the lower right hand node until it fills the screen. ILTA09 SQL2008 University Lab Session Page 34

37 c. We now need to change the X Axis interval settings. Right click the area underneath the chart where it says Author A Author B Author C, and click Axis Properties. For the Interval property under Set axis scale and type type in 1. Click OK. This will force chart to show all of our authors. d. Let s update some of the chart descriptions. Double Click the Chart Title. Highlight the text, delete it, and replace it with Number of Documents by Author. Do the same thing for the Axis Titles. For the X Axis title on the bottom of the chart, name it Author. For the Y Axis title on the left of the chart, name it Number. e. Now click the Run button on the toolbar to generate the report. f. This looks much better. Let s go ahead and save the report by clicking the pearl in the upper left hand corner, and clicking Save. Call the report DocumentsbyAuthor and save it into the default location ( ILTA09 SQL2008 University Lab Session Page 35

38 Exercise 5. Manage Report Subscriptions. Now that we have created a report, we would like to automatically run and deliver this report via e mail. a. Report subscriptions can be managed by the SSRS web client. You can access the reports module by opening Internet Explorer and browsing to If prompted, enter in administrator / Ilta09 for the username / password. b. The DocumentsByAuthor report that you saved in the last exercise should now be available. Click on it to run it. Users without the Report Builder client can easily access these reports on demand through the SSRS web client. c. Click the Subscriptions Tab, and click New Subscription to setup a new subscription. d. Leave all options as default except for the following properties: Delivered by: E Mail To: administrator@ilta09.com Comment: Type in Click the link to show the number of documents per author e. Click Select Schedule. ILTA09 SQL2008 University Lab Session Page 36

39 f. In the Daily Schedule section, select Every weekday, set the time to two minutes from the time currently displayed in the clock in the notification area on the task bar, and then click OK. g. Click OK to complete the subscription. h. Wait two minutes, or until the time that you scheduled the subscription to run. Then refresh the web page. Note the Last Run value for the subscription. i. Let s take a look at the E Mail for the subscription we just created. Open up Windows Explorer by clicking Start => All Programs => Accessories => Windows Explorer. Click the Computer icon, and navigate to the C:\InetPub\Mailroot\Drop directory. Double click the E Mail, and verify that the chart is there, along with a link to the report. ILTA09 SQL2008 University Lab Session Page 37

40 Lab 5: Explore Policy Based Management Framework Policy Based Management is a new feature in SQL Server It allows you to define and enforce policies on database instances, objects and SQL Servers across the enterprise. Policies can be used to a number of different things in your SQL Enterprise, including the enforcement of naming conventions, verification of correct database options, and ensuring SQL Server configuration options are in compliance. There are a number of terms to be understood with Policy Based Management: Target an entity that is managed by Policy Based management; e.g. a database, a table, an index, etc. Facet a predefined set of properties that can be managed Condition a property expression that evaluates to True or False Policy a condition to be checked and/or enforced The most challenging part of creating an effective database policy system is deciding what exactly it is you want to create policies for. In this lab, we will configure SQL Server Policies to ensure that database backups are being handled regularly. Exercise 1. Create and Evaluate a New Policy a. The first step in creating the policy is to create a condition. To do this launch SQL Server Management Studio and navigate to the Management => Policy Management => Conditions node. b. We now want to create a condition that can detect whether a database has been backed up. Start by right clicking on the Conditions folder and click select New Condition... In the Create New Condition dialog box, enter a name of Last Backup Date, and pick the Database facet. c. Let s define an expression that can detect databases that haven t been backed up. In the Expression area, click the Field Box, and Click >= in the operator box, and then click the in the Value field. The Advanced Edit box should now pop up. Type in the following for the cell value: DATEADD( DAY,-1,GetDate()) ILTA09 SQL2008 University Lab Session Page 38

41 When finished, close the dialog box. Click OK when your condition is complete. d. Now right click the Policies node under Management in SSMS, and click New Policy Let s name it Check Database Backups. In the Check condition field, choose the Last Backup Date condition we previously created. For the targets, leave the default of Every Database. For now, we will leave the Evaluation Mode as On Demand. Click OK to complete the policy. ILTA09 SQL2008 University Lab Session Page 39

42 e. We are ready to evaluate our Policy. To do so, right click the Check Database Backups policy and select Evaluate. You should now see that the policy throws three errors, one for each database in our system that has not been backed up. ILTA09 SQL2008 University Lab Session Page 40

43 Exercise 2. Backup the ILTADOCS Database and ReEvaluate our Policies a. We will now perform a manual backup of the ILTADOCS database as our policy recommends. In SSMS, Right Click the ILTADOCS database and select Tasks => Backup b. For our lab, the defaults will work fine for us. Click OK to perform the backup. It should complete relatively quickly. ILTA09 SQL2008 University Lab Session Page 41

44 c. To double check that the backup is correct, Launch Windows Explorer and navigate to the C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Backup directory. d. Make sure you see the physical Backup file ILTADOCS.BAK. e. Now that we ve backed up the database, let s see if our policy results change. Switch back to SQL Server Management Studio, and re evaluate the Check Database Backup policy. You should see the following results (after resizing the column widths). f. Let s make another change to our policy so that it runs on a schedule, rather than ondemand. Right click the Check Database Backup policy, and select Properties. In the Evaluation Mode dialog, select On Schedule. We are now going to choose a pre existing schedule. Click the Pick button, and choose the Every 5 minutes schedule (ID 2). Click OK when finished. g. We now need to enable the policy. To do so, right click the Check Database Backup policy, and choose Enable. Every 5 minutes, the policy will evaluate and determine which databases have not been backed up in the last day. Events will automatically be sent to the event viewer. It is possible to create an alert that will automatically backup our databases if the policy evaluation fails. Furthermore, this policy can apply to all SQL 2008 servers as well, so you can enforce database backups in one policy throughout your organization. ILTA09 SQL2008 University Lab Session Page 42

Policy Commander Console Guide - Published February, 2012

Policy Commander Console Guide - Published February, 2012 Policy Commander Console Guide - Published February, 2012 This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted)

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted) 1. ECI Hosted Clients........................................................................................... 2 1.1 Installing Release 6.3 for the First Time (ECI Hosted)...........................................................

More information

NetBackup 7.6 Replication Director A Hands On Experience

NetBackup 7.6 Replication Director A Hands On Experience NetBackup 7.6 Replication Director A Hands On Experience Description Through this hands on lab you can test drive Replication Director and experience for yourself this easy to use, powerful feature. Once

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab Description IT Analytics has a diverse and powerful way of displaying data to your users. In this lab, you will learn how to

More information

User Guide Part 11. Tools and Utilities

User Guide Part 11. Tools and Utilities User Guide Part 11 Tools and Utilities Contents 1 OVERVIEW... 4 2 DATA SIMULATOR... 5 2.1 Introduction... 5 2.2 Using the Data Simulator... 5 3 DATABASE UTILITY... 6 3.1 About the Database Utility... 6

More information

Administrator s Guide

Administrator s Guide Administrator s Guide 1995 2011 Open Systems Holdings Corp. All rights reserved. No part of this manual may be reproduced by any means without the written permission of Open Systems, Inc. OPEN SYSTEMS

More information

ILTA HAND 6A. Implementing and Using. Windows Server In the Legal Environment

ILTA HAND 6A. Implementing and Using. Windows Server In the Legal Environment ILTA 2013 - HAND 6A Implementing and Using Windows Server 2012 In the Legal Environment Table of Contents Purpose of This Lab... 3 Lab Environment... 3 Presenter... 3 Exercise 1 Getting Familiar with Windows

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

Setting up a database for multi-user access

Setting up a database for multi-user access BioNumerics Tutorial: Setting up a database for multi-user access 1 Aims There are several situations in which multiple users in the same local area network (LAN) may wish to work with a shared BioNumerics

More information

SAS. Information Map Studio 3.1: Creating Your First Information Map

SAS. Information Map Studio 3.1: Creating Your First Information Map SAS Information Map Studio 3.1: Creating Your First Information Map The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Information Map Studio 3.1: Creating Your

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Model Builder User Guide Version 1.3 (24 April 2018) Prepared For: US Army Corps of Engineers 2018 Revision History Model

More information

Legal Notes. Regarding Trademarks KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Perform a Server Move for Junxure

Perform a Server Move for Junxure Perform a Server Move for Junxure These instructions are the recommendations for IT personnel on how to perform a Server Move for the Junxure Database. Junxure Tech Support understands every environment

More information

Manufacturing Process Intelligence DELMIA Apriso 2017 Installation Guide

Manufacturing Process Intelligence DELMIA Apriso 2017 Installation Guide Manufacturing Process Intelligence DELMIA Apriso 2017 Installation Guide 2016 Dassault Systèmes. Apriso, 3DEXPERIENCE, the Compass logo and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA,

More information

Deltek Costpoint CRM 6.2. Custom Reports and Microsoft SQL Server Reporting Services

Deltek Costpoint CRM 6.2. Custom Reports and Microsoft SQL Server Reporting Services Deltek Costpoint CRM 6.2 Custom Reports and Microsoft SQL Server Reporting November 11, 2011 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

New World ERP-eSuite

New World ERP-eSuite New World ERP-eSuite 2018.1 INSTALLATION GUIDE April 9, 2018 Review important information for installing this release: SSL is required for esuite Services and Website servers. 2018 Tyler Technologies.

More information

BCI.com Sitecore Publishing Guide. November 2017

BCI.com Sitecore Publishing Guide. November 2017 BCI.com Sitecore Publishing Guide November 2017 Table of contents 3 Introduction 63 Search 4 Sitecore terms 66 Change your personal settings 5 Publishing basics 5 Log in to Sitecore Editing 69 BCI.com

More information

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s Chapter 9 Turning Data into Information with SQL Server Reporting Services In This Chapter Configuring SQL Server Reporting Services with Reporting Services Configuration Manager Designing reports Publishing

More information

EXERCISE 3: PUBLISHING AN ODM DATABASE WITH WATERONEFLOW

EXERCISE 3: PUBLISHING AN ODM DATABASE WITH WATERONEFLOW EXERCISE 3: PUBLISHING AN ODM DATABASE WITH WATERONEFLOW As far as your local setup goes, you are now ready for action with your ODM database. But what if you want to share the data with others online?

More information

Customizing and Administering Project Server Access

Customizing and Administering Project Server Access WEB Customizing and Administering Project Server Access In this chapter Creating and Deleting Users from Project Server 2 Managing User Groups Project Server User Security 4 Using Categories to Control

More information

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled,

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled, APM Migration Introduction... 3 General Requirements... 3 Database Requirements... 3 Stopping APM Services... 4 Creating and Restoring Orion Database Backups... 4 Creating a Database Backup File with Database

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.2 Content Author's Reference and Cookbook Rev. 140225 Sitecore CMS 7.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

Colligo Manager 5.4 SP3. User Guide

Colligo  Manager 5.4 SP3. User Guide 5.4 SP3 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 4 Updating

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request...

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request... remitview User Guide 1 TABLE OF CONTENTS INTRODUCTION... 3 Calendar & Buttons... 3 GETTING STARTED.... 5 Dashboard.... 7 Menu Features... 8 PROFILE.... 10 My Profile... 10 My Favorites... 12 Watch List...

More information

NETWRIX GROUP POLICY CHANGE REPORTER

NETWRIX GROUP POLICY CHANGE REPORTER NETWRIX GROUP POLICY CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 7.2 November 2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

OUTLOOK HOW DO I? 2013

OUTLOOK HOW DO I? 2013 OUTLOOK HOW DO I? Click on a Link to take you to that Section OUTLOOK - GENERAL... 2 GENERAL How Do I Navigate the 2010 Outlook Screen?... 2 GENERAL: How Do I Change the Reading Pane View?... 7 GENERAL:

More information

4 BSM FOUNDATION BOOTCAMP

4 BSM FOUNDATION BOOTCAMP Lab 4 BSM FOUNDATION BOOTCAMP BMC Analytics Using and Installing BMC Analytics Table of Contents Part I: Part II: Simple Report Creation Converting table to chart; switching the dimension. Part III: How

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 10.3 Last Updated: August 2012 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

NETWRIX ACTIVE DIRECTORY CHANGE REPORTER

NETWRIX ACTIVE DIRECTORY CHANGE REPORTER NETWRIX ACTIVE DIRECTORY CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 7.2 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

IQSweb Installation Instructions Version 5.0

IQSweb Installation Instructions Version 5.0 IQSweb Installation Instructions Version 5.0 Contents Additional References... 3 IQSweb ROSS Connection... 3 IQSweb V5.0 Install/Upgrade Scenarios... 4 IQSweb Configuration Options... 5 A. Single Computer/Server

More information

Managing the CaseMap Admin Console User Guide

Managing the CaseMap Admin Console User Guide Managing the CaseMap Admin Console User Guide CaseMap Server, Version 2.3 Accessing the CaseMap Admin Console Registering CaseMap Servers Registering SQL Servers Setting Up Roles and Users Managing SQL

More information

Admissions & Intro to Report Editing Participants Guide

Admissions & Intro to Report Editing Participants Guide IBM Cognos Analytics Admissions & Intro to Report Editing Participants Guide Welcome to Cognos - Admissions and Introduction to Report Editing! Today s objectives include: Gain a Basic Understanding of

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices

EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices Hands-On Lab Description Most corporations today have some form of patch process in place. In this session, you will learn

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

Sage X3 Intelligence Financial Reporting. Installation and Upgrade Guide

Sage X3 Intelligence Financial Reporting. Installation and Upgrade Guide Financial Reporting Installation and Upgrade Guide The software described in this document is protected by copyright, and may not be copied on any medium except as specifically authorized in the license

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x ABSTRACT An often requested feature in reporting is the development of simple Dashboard reports that summarize project information in

More information

Reliable High-Speed Connection to Publication Database for Synchronization

Reliable High-Speed Connection to Publication Database for Synchronization PCS Axis v1.9 Client/Server New Installation with Replication May 2015 Introduction American Innovations (AI) is pleased to announce version 1.9 of our Pipeline Compliance System Axis software (PCS Axis

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Attendee Choice: IMS Hands-on Lab Thursday, August 13, 2015: 12:30 PM - 01:30 PM, Dolphin, Asia 5 #17765 Insert Custom Session QR if Desired Business Analytics on zenterprise The QMF 11 Product Family

More information

Abila MIP DrillPoint Reports. Installation Guide

Abila MIP DrillPoint Reports. Installation Guide Abila MIP DrillPoint Reports This is a publication of Abila, Inc. Version 16.1 2015 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service

More information

Embarcadero DB Optimizer 1.0 Evaluation Guide. Published: July 14, 2008

Embarcadero DB Optimizer 1.0 Evaluation Guide. Published: July 14, 2008 Published: July 14, 2008 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed substantially prior to final commercial

More information

Installing the PC-Kits SQL Database

Installing the PC-Kits SQL Database 1 Installing the PC-Kits SQL Database The Network edition of VHI PC-Kits uses a SQL database. Microsoft SQL is a database engine that allows multiple users to connect to the same database. This document

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Composer 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 2 Who should read this manual... 2 What s included in this manual... 2 Symbols and

More information

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6 IBM Atlas Policy Distribution Administrators Guide: IER Connector for IBM Atlas Suite v6 IBM Atlas Policy Distribution: IER Connector This edition applies to version 6.0 of IBM Atlas Suite (product numbers

More information

Griffin Training Manual Grif-WebI Introduction (For Analysts)

Griffin Training Manual Grif-WebI Introduction (For Analysts) Griffin Training Manual Grif-WebI Introduction (For Analysts) Alumni Relations and Development The University of Chicago Table of Contents Chapter 1: Defining WebIntelligence... 1 Chapter 2: Working with

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 12 July 2016 Page 2 Table of Contents INTRODUCTION... 4 APPLICATION ARCHITECTURE... 5 DOCUMENT OVERVIEW... 6 GENERAL USER INTERFACE... 7 CONTROLS...

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

Colligo Engage Outlook App 7.1. Offline Mode - User Guide Colligo Engage Outlook App 7.1 Offline Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 3 Checking

More information

2 Getting Started. Getting Started (v1.8.6) 3/5/2007

2 Getting Started. Getting Started (v1.8.6) 3/5/2007 2 Getting Started Java will be used in the examples in this section; however, the information applies to all supported languages for which you have installed a compiler (e.g., Ada, C, C++, Java) unless

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Rapid SQL 7.5 Evaluation Guide. Published: September 28, 2007

Rapid SQL 7.5 Evaluation Guide. Published: September 28, 2007 Rapid SQL 7.5 Evaluation Guide Published: September 28, 2007 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed

More information

Junxure Code Upgrade Instructions

Junxure Code Upgrade Instructions Junxure Code Upgrade Instructions If at any time you run into an issue with the following process, call or email Junxure Support (866-586-9873, opt 1 or support@junxure.com) and we will assist you with

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

NETWRIX WINDOWS SERVER CHANGE REPORTER

NETWRIX WINDOWS SERVER CHANGE REPORTER NETWRIX WINDOWS SERVER CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 4.0 June 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

EasyLobby Database Setup EasyLobby Family of Products Version 10.0

EasyLobby Database Setup EasyLobby Family of Products Version 10.0 EasyLobby Database Setup EasyLobby Family of Products Version 10.0 Introduction This document describes how to set up the EasyLobby 10.0 database on Microsoft SQL Server or Oracle, how to setup an ODBC

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Technical Publications 1View

Technical Publications 1View Technical Publications 1View 1View User Guides Overview... 2 Homepage... 4 Subscription Management... 5 Table of Contents (TOC)... 6 Navigation... 8 Search... 11 Linking... 13 Order List... 14 Graphic

More information

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008 Embarcadero PowerSQL 1.1 Evaluation Guide Published: July 14, 2008 Contents INTRODUCTION TO POWERSQL... 3 Product Benefits... 3 Product Benefits... 3 Product Benefits... 3 ABOUT THIS EVALUATION GUIDE...

More information

OSR Administration 3.7 User Guide. Updated:

OSR Administration 3.7 User Guide. Updated: OSR Administration 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Reading Sample. Creating New Documents and Queries Creating a Report in Web Intelligence Contents. Index. The Authors

Reading Sample. Creating New Documents and Queries Creating a Report in Web Intelligence Contents. Index. The Authors First-hand knowledge. Reading Sample In this sample chapter, you l l start in Chapter 2 by creating your first document and query in SAP BusinessObjects BI. In this process, we ll explore the query panel,

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several

More information

Desktop Deployment Guide

Desktop Deployment Guide ARGUS Enterprise 11.7.0 12/13/2017 ARGUS Enterprise 11.7.0 12/13/2017 Published by: ARGUS Software, Inc. 750 Town and Country Blvd Suite 800 Houston, TX 77024 Telephone (713) 621-4343 Facsimile (713) 621-2787

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

MultiSite Manager. User Guide

MultiSite Manager. User Guide MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tab... 3 All Sites... 3 Reports... 4 Licenses... 5 3.

More information

Getting Started. In this chapter, you will learn: 2.1 Introduction

Getting Started. In this chapter, you will learn: 2.1 Introduction DB2Express.book Page 9 Thursday, August 26, 2004 3:59 PM CHAPTER 2 Getting Started In this chapter, you will learn: How to install DB2 Express server and client How to create the DB2 SAMPLE database How

More information

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

.NET SAML Consumer Value-Added (VAM) Deployment Guide

.NET SAML Consumer Value-Added (VAM) Deployment Guide .NET SAML Consumer Value-Added (VAM) Deployment Guide Copyright Information SecureAuth is a copyright of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products and solutions,

More information

Follow all of the steps indicated below for each process. Some steps may require IT assistance.

Follow all of the steps indicated below for each process. Some steps may require IT assistance. The instructions provided below are for upgrading EnergyCAP Enterprise from Release 6.0 to Release 6.1SP1. The version number of EnergyCAP 6.1 is 6.1.60.xx. (xx will correspond to the current build, and

More information

Sage SQL Gateway Installation and Reference Guide

Sage SQL Gateway Installation and Reference Guide Sage SQL Gateway Installation and Reference Guide IMPORTANT NOTICE This document and the Sage 300 Construction and Real Estate software may be used only in accordance with the Sage 300 Construction and

More information

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018 ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk November 2018 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

8 MANAGING SHARED FOLDERS & DATA

8 MANAGING SHARED FOLDERS & DATA MANAGING SHARED FOLDERS & DATA STORAGE.1 Introduction to Windows XP File Structure.1.1 File.1.2 Folder.1.3 Drives.2 Windows XP files and folders Sharing.2.1 Simple File Sharing.2.2 Levels of access to

More information

Introduction & Navigation

Introduction & Navigation Introduction & Navigation Logging In to Marketing Cloud 1. Open a tab in either the Chrome or Firefox web browser. 2. Place your cursor in the URL bar then type mc.exacttarget.com. 3. Strike the Enter

More information

MEDIASEAL Encryptor Client Manual

MEDIASEAL Encryptor Client Manual MEDIASEAL Encryptor Client Manual May 2018 Version 3.7.1 Fortium Technologies Ltd www.fortiumtech.com Copyright 2018 - Fortium Technologies Ltd Information contained in this document is subject to change

More information

Configuration of trace and Log Central in RTMT

Configuration of trace and Log Central in RTMT About Trace Collection, page 1 Preparation for trace collection, page 2 Types of trace support, page 4 Configuration of trace collection, page 5 Collect audit logs, page 19 View Collected Trace Files with

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

DB Change Manager. User Guide. Version 17.0 Published December 2017

DB Change Manager. User Guide. Version 17.0 Published December 2017 DB Change Manager User Guide Version 17.0 Published December 2017 2017 IDERA, Inc. IDERA, the IDERA logos, and all other IDERA product or service names are trademarks or registered trademarks of IDERA,

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

Talend Open Studio for MDM Web User Interface. User Guide 5.6.2

Talend Open Studio for MDM Web User Interface. User Guide 5.6.2 Talend Open Studio for MDM Web User Interface User Guide 5.6.2 Talend Open Studio for MDM Web User Interface Adapted for v5.6.2. Supersedes previous releases. Publication date: May 12, 2015 Copyleft This

More information

IBM NetBAY Virtual Console Software. Installer and User Guide

IBM NetBAY Virtual Console Software. Installer and User Guide IBM NetBAY Virtual Console Software Installer and User Guide INSTRUCTIONS This symbol is intended to alert the user to the presence of important operating and maintenance (servicing) instructions in the

More information

SAS Studio: A New Way to Program in SAS

SAS Studio: A New Way to Program in SAS SAS Studio: A New Way to Program in SAS Lora D Delwiche, Winters, CA Susan J Slaughter, Avocet Solutions, Davis, CA ABSTRACT SAS Studio is an important new interface for SAS, designed for both traditional

More information

Netwrix Auditor for Active Directory

Netwrix Auditor for Active Directory Netwrix Auditor for Active Directory Quick-Start Guide Version: 8.0 4/22/2016 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab 1 Overview QMF for Workstation is an Eclipse-based, rich client desktop Java application, that uses JDBC to connect to data

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

ICL02: Security Analytics: Discover More in your Endpoint Protection Dashboard Hands-On Lab

ICL02: Security Analytics: Discover More in your Endpoint Protection Dashboard Hands-On Lab ICL02: Security Analytics: Discover More in your Endpoint Protection Dashboard Hands-On Lab Description In this lab you will learn how to install and create custom reports and dashboards using IT Analytics

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information