... PM CHAPTER ■■■ Installing, Upgrading, and Managing Change T he best way to start reviewing the new features and changes offered by the Oracle Database 11g release is by first installing the software ... ■CHAPTER Installing, Upgrading, and Managing Change New Features in Server Installation Changes in the Optimal Flexible Architecture Changes ... and SA roles via the sysasm role • New manageability options for the check, mount, and drop commands • A copy command to copy files between diskgroups, across ASM instances, and between ASM and...
Ngày tải lên: 24/01/2014, 04:20
Giáo trình SQL và PL/SQL
... 1000 AND 2000 AND JOB = MANAGER; SELECT DEPTNO, JOB, ENAME, SAL FROM EMP WHERE SAL BETWEEN 1000 AND 2000 OR JOB = MANAGER; SELECT DEPTNO, JOB, EMPNO, ENAME, SAL FROM EMP WHERE SAL > 1500 AND JOB ... FROM EMP WHERE SAL BETWEEN 1000 AND 2000 ; Truy vấn liệu với nhiều điều kiện Mệnh đề WHERE cho phép ghép đợc nhiều điều kiện thông qua toán tử logic AND/ OR Toán tử AND yêu cầu liệu phải thoả mãn ... có tồn : thuộc giá trị danh sách [NOT] BETWEEN x AND y Ví dụ chọn nhân viên có lơng nằm khoảng 2000 3000 SELECT * FROM emp WHERE sal BETEEN 2000 AND 3000; IN (danh sách) Chọn nhân viên có lơng...
Ngày tải lên: 23/08/2012, 16:16
Oracle PL SQL cơ bản
... AND/ OR Toán tử AND yêu cầu liệu phải thoả mãn điều kiện Toán tử OR cho phép liệu thoả mãn điều kiện Ví dụ: SELECT DEPTNO, JOB, ENAME, SAL FROM EMP WHERE SAL BETWEEN 1000 AND 2000 AND JOB = ‘MANAGER’; ... BETWEEN 1000 AND 2000 OR JOB = ‘MANAGER’; SELECT DEPTNO, JOB, FROM EMP WHERE SAL > 1500 AND JOB = ‘MANAGER’ OR JOB =’SALESMAN’; EMPNO, ENAME, SAL SELECT DEPTNO, JOB, FROM EMP WHERE SAL > 1500 AND (JOB ... BETWEEN 1000 AND 2000 ; Trang 17 Quyển sách upload tại: hutonline.net Oracle - SQL PL/SQL Truy vấn liệu với nhiều điều kiện Mệnh đề WHERE cho phép ghép nhiều điều kiện thông qua toán tử logic AND/ OR...
Ngày tải lên: 31/08/2012, 16:46
Giới thiệu ngôn ngữ PL-SQL
... Thoát khỏi lệnh lặp duyệt hết tất liệu EXIT WHEN c_Dept %notfound; IF (v_Dept.dname = 'SALES' )AND( v_Dept.loc!='DALLAS') THEN Cập nhật liệu cursor Trang 80 Quyển sách upload tại: hutonline.net ... c_Dept; Đếm số lượng ghi cập nhật v_sales_count := sales_count + 1; ELSIF (v_dept.dname != 'SALES' )AND( v_Dept.loc!='NEWYORK') THEN Cập nhật liệu cursor UPDATE Dept SET loc = 'NEWYORK' WHERE CURRENT...
Ngày tải lên: 29/09/2013, 05:20
GIỚI THIỆU NGÔN NGỮ PL-SQL
... Thoát khỏi lệnh lặp duyệt hết tất liệu EXIT WHEN c_Dept %notfound; IF (v_Dept.dname = 'SALES' )AND( v_Dept.loc!='DALLAS') THEN Cập nhật liệu cursor Trang 80 Quyển sách upload tại: hutonline.net ... c_Dept; Đếm số lượng ghi cập nhật v_sales_count := sales_count + 1; ELSIF (v_dept.dname != 'SALES' )AND( v_Dept.loc!='NEWYORK') THEN Cập nhật liệu cursor UPDATE Dept SET loc = 'NEWYORK' WHERE CURRENT...
Ngày tải lên: 29/09/2013, 05:20
Giới thiệu ngôn gn]c PL-SQL
... Thoát khỏi lệnh lặp duyệt hết tất liệu EXIT WHEN c_Dept %notfound; IF (v_Dept.dname = 'SALES' )AND( v_Dept.loc!='DALLAS') THEN Cập nhật liệu cursor Trang 80 Oracle - SQL PL/SQL UPDATE Dept SET ... c_Dept; Đếm số lượng ghi cập nhật v_sales_count := sales_count + 1; ELSIF (v_dept.dname != 'SALES' )AND( v_Dept.loc!='NEWYORK') THEN Cập nhật liệu cursor UPDATE Dept SET loc = 'NEWYORK' WHERE CURRENT...
Ngày tải lên: 02/10/2013, 17:20
Tổng quan về PL-SQL và Procedure Builder
... vết sửa lỗi Program Unit Tìm vết, sửa lỗi Program Unit PL/SQL interpreter gồm có: Toolbar Command line Tạo breakpoint (nhấn đúp vào số dòng lệnh) để dừng đoạn chơng trình, kiểm tra biến runtime,...
Ngày tải lên: 06/10/2013, 09:20
Tổng quan về PL-SQL và Procedure builder
... vết sửa lỗi Program Unit Tìm vết, sửa lỗi Program Unit PL/SQL interpreter gồm có: Toolbar Command line Tạo breakpoint (nhấn đúp vào số dòng lệnh) để dừng đoạn chơng trình, kiểm tra biến runtime,...
Ngày tải lên: 06/10/2013, 14:20
OCP: Oracle8i DBA SQL and PL/SQL Study Guide
... architecturedatabase and instance Physical and logical storage of database, managing space allocation and growth Managing datastorage, loading, and reorganization Managing roles, privileges, passwords, and resources ... Backup and recovery options Archiving redo log files and hot backups Backup and recovery using Recovery Manager (RMAN) Creating and managing standby database Identifing and tuning database and SQL ... Professional? xxi Understanding RDBMS concepts Writing queries and manipulating data Creating and managing users and database objects Knowledge of PL/SQL programming and constructs Oracle Server...
Ngày tải lên: 16/10/2013, 13:15
Giáo trình SQL và PL SQL part 6
... PRIOR condition] [GROUP BY expr] [HAVING condition] [UNION/UNION ALL/INTERSET/MINUS select command] [ORDER BY expr/position [DESC/ASC]] Trong đó: START WITH Đặc tả điểm đầu hình Không thể để ... 800 CLERK 1100 SELECT LEVEL, DEPTNO, EMPNO, ENAME, JOB, SAL FROM EMP CONNECT BY PRIOR EMPNO = MGR AND ENAME != SCOTT START WITH MGR IS NULL; LEVEL DEPTNO EMPNO ENAME -1 10 ... CONNECT BY condition] [GROUP BY expr] [HAVING condition] [UNION/UNION ALL/INTERSET/MINUS select command] [ORDER BY expr/position [DESC/ASC]] [FOR UPDATE OF [column]] [NOTWAIT] Các thành phần câu lệnh...
Ngày tải lên: 17/10/2013, 19:15
Oracle PL/SQL Language Pocket Reference- P5
... in other words, unhandled and it disrupts the execution of the application Previous: 8.1 Why Oracle PL/SQL Exception Handling? Programming, 2nd Edition 8.1 Why Exception Handling? Book Index ... Exception Section Exception Handlers Contents: Why Exception Handling? The Exception Section Types of Exceptions Determining Exception-Handling Behavior Raising an Exception Handling Exceptions Client-Server ... offers a powerful and flexible way to trap and handle errors in your programs It is entirely feasible within the PL/SQL language to build an application which fully protects the user and the database...
Ngày tải lên: 17/10/2013, 22:15
SQL and PL/SQL Using Procedure Buider
... and Services Introduction IĆ21 Server ÉÉÉÉ SQL and PL/SQL Scripts IĆ22 Introduction to Oracle: SQL and PL/SQL Using Procedure Builder SQL, SQL*Plus, and PL/SQL SQL, SQL*Plus, and PL/SQL commands ... make changes to rows in a table, or delete rows by using data manipulation commands This lesson covers using SQL commands to make changes to data A number of these data manipulation commands ... concepts and techniques How This Course Is Organized Introduction to Oracle: SQL and PL/SQL Using Procedure Builder is an instructor-led course featuring lecture and hands-on exercises The concepts and...
Ngày tải lên: 19/10/2013, 11:15
Oracle PL/SQL Language Pocket Reference- P6
... the cursor name and before the IS keyword I took out the hardcoded "HUSBAND" and replaced it with "UPPER (category_in)" so that I could enter "HUSBAND", "husband", or "HuSbAnD" and the cursor ... jokes about husbands That's all well and good, but what if I also would like to see lightbulb jokes and then chicken -and- egg jokes and finally, as my ten-year-old would certainly demand, all my knock-knock ... Chapter Database Interaction and Cursors Next: 6.4 Declaring Cursors 6.3 Implicit and Explicit Cursors Let's take a closer look at implicit and explicit cursors and the ways you can put them...
Ngày tải lên: 20/10/2013, 17:15