Query Builder Reporting from Production. Database Structure Each application has 2 Oracle Schemas FAST(appname) and FAST(appname)_QUERY FAST Student 

Slides:



Advertisements
Similar presentations
Easily retrieve data from the Baan database
Advertisements

Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Oracle Database Vault with Oracle Database 12c Chi Ching Chui Senior Development.
Securing Oracle Databases CSS-DSG JTrumbo. Audit Recommendations -Make sure databases are current with patches. -Ensure all current default accounts &
Idaho National Engineering and Environmental Laboratory The Data Warehouse The Place to go for Integrated Data Norman H Stevens
15 1 Chapter 15 Database Administration Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel.
Copyright Steve Brandt This work is the intellectual property of the author. Permission is granted for this material to be shared for non-commercial,
What are the key improvements in web content management?
Getting Started with Oracle11g Abeer bin humaid. Create database user You should create at least one database user that you will use to create database.
Mike Kemakolam Adam Thornton Brandon Shrewsbury. Changes made to implementation scope Migrated to MySQL database Created a home page Used ADO.Net entity.
Oracle Database Security …from the application perspective Martin Nystrom September 2003.
An information system (IS) is an arrangement of people, data, processes, communications, and information technology that interact to support and improve.
Easy HTML DB. Michael Cunningham Developer/Database Administrator.
CSU Fullerton Common Financial System Lessons Learned 1.
Site in a Box™ for Intranets Jim Teece Project A.
Best Practices for Data Warehousing. 2 Agenda – Best Practices for DW-BI Best Practices in Data Modeling Best Practices in ETL Best Practices in Reporting.
Presenters: Carla R. Espinoza and Mindi Balmer Date: Wednesday, November 16, 2011 Time: 2:30 to 3:30 PM KUALI PEOPLE MANAGEMENT FOR THE ENTERPRISE - POSITION,
Overview of SAP ERP- Training Steps
Copyright س Oracle Corporation, All rights reserved. 14 Controlling User Access.
Pivotier - The RIGHT Report Writer for Dynamics NAV
User selects an option to either create new Account or update existing Oracle Apps Account Click to continue….
Week 7 Lecture 1 Database Roles. Learning Objectives  Discover when and why to use roles  Learn how to create, modify, and remove roles  Learn how.
Customer Spotlight Denise Sessa | Business Systems Analyst Nevada Cancer Institute.
7 Copyright © 2004, Oracle. All rights reserved. Administering Users.
Multiplication Facts. 1 x3 3 Think Fast… 2 x4 8.
Higher Express Banner-APEX Integration Framework
WORKFLOW. What is workflow A system to manage and monitor working processes Defining and tracking the flow of work between individuals and/or departments.
Power at Your Fingertips –Overlooked Gems in Oracle EM John Sheaffer Principal Sales Consultant – Oracle Corporation.
Copyright © 2004, Oracle. All rights reserved. CONTROLLING USER ACCESS Oracle Lecture 8.
DBMS_Week 3-4 DBMS. Three-Schema Architecture – Internal schema (one view) describes physical storage structures access paths, indexes used Typically.
Transactions, Roles & Privileges Oracle and ANSI Standard SQL Lecture 11.
Feature Synopsis Easy and fast upload as well as transfer of billing information to employees. Multiple GSM number support. Multi-provider support. Easy.
Chapter 3 Logical Database Layouts Database Processing Chapter 3 - OFA.
SQL Server 2005 Implementation and Maintenance Chapter 6: Security and SQL Server 2005.
13 Copyright © Oracle Corporation, All rights reserved. Controlling User Access.
Database Security. Multi-user database systems like Oracle include security to control how the database is accessed and used for example security Mechanisms:
1 Copyright © 2006, Oracle. All rights reserved. Controlling User Access ( 사용자 접근 제어 )
Copyright 2007, Information Builders. Slide 1 iWay Web Services and WebFOCUS Consumption Michael Florkowski Information Builders.
What is a Wiki? A wiki is an online database that can be edited by anyone with access to it. “ Wiki ” is Hawaiian meaning ‘ fast ’ or ‘ quick ’
ORACLE APPS TECHNICAL ONLINE TRAINING % VIDEO CLASS | APPS TECH USA-UK-CANADA Online | classroom| Corporate Training | certifications | placements| support.
15 Copyright © Oracle Corporation, All rights reserved. Managing Users.
Copyright  Oracle Corporation, All rights reserved. 14 Controlling User Access.
Client Warehouse Builder Your Chance to Learn! Why Would I Use It? Have some custom tables you want to warehouse and report off of Have additional reporting.
Assignment Help - BookMyEssay. What is Oracle? Oracle was developed in 1977 by Lawrence Ellison. Data can be directly accessed by the users through Structured.
Controlling User Access
Objectives User access Create users Create roles
Easily retrieve data from the Baan database
Database Security.
Training: Intro to FLAC (Faculty Load & Compensation)
Enabling Distributed Transactions
Oracle Accounts on Campus
The powerhouse PL/SQL upgrade option: Edition-Based Redefinition (EBR)
Database Security.
HR Demo and Overview Rob McMicking
COMP-2: Improve Your Application with Data Search & Query
Support Multiple Devices
Ch 3 Synonym.
Ch 3 Synonym.
ERP / SAP Introduction Ramakrishna M.
Multiplication Facts.
Ch 3 Synonym.
Create New User in Database. First Connect the System.
Chapter 1 Introduction.
Database Administration
Chapter 3 Synonym.
Extend Excel with Smartlist Designer
Source Feature Survey Source Features survey in Survey123 - from creating survey to Bulk Create in Biotics.
Overview of Databases and Salesforce Chapter 1
Using the FAST Page Builder
HR Reporting: Round Table and Demo
Reports Report builder meets the challenge by making it easy to design, publish, and distribute professional, production-quality reports in a variety of.
Presentation transcript:

Query Builder Reporting from Production

Database Structure Each application has 2 Oracle Schemas FAST(appname) and FAST(appname)_QUERY FAST Student  FASTSTU, FASTSTUDENT_QUERY; FAST Finance  FASTMCSL, FASTFINANCE_QUERY; FAST HR  FASTHR, FASTHR_QUERY; FASTBUDGET  FASTBUDGET, FASTBUDGET_QUERY; …. All baseline objects for the application exists in the non Query schema Query Builder access is through the Query schema only Buy default the Query schema has very little access

How does Query Builder Access work Query Object Access This page allow you to grant access to baseline objects

But what about Non-Baseline Objects You can access any production object that is part ERP system that your FAST application was built to support FAST Fiannce  FIMSMGR objects FAST Student  SATURN objects …. Access to these objects needs to be granted to the Query schema Several different ways to accomplish this Can depend on IT support Institutional guidelines

Ways to access Non-Baseline Objects Create a new dblink directly in the Query schema Needs DBA support Easy keep track of what non-baseline objects are being used More work keeping track of multiple accounts and access Set up a dblink using the FASTMCSL user in the Query schema Needs DBA support Access to all objects FAST has already been granted Less maintenance Use existing objects but the Query schema access to them No DBA support but will be limited to only the objects FAST already uses

FAST Baseline App FAST Baseline App Query Baseline Reports Custom Reports Production FASTMCSL dblink Query dblink (may just use FASTMCSL dblink) This must be created in the Query Schema of the application you are working in

We have access now what? You can now access the production objects by using the fully qualified path i.e. This can be used directly in the Query Builder Or you can create a synonym for this object and then use that i.e. CREATE SYNONYM PSYNSPRIDEN for You can now use the synonym name in the Query Builder