會員登入
|
加入會員
|
會員專區
|
購物車
|
自資出版
|
電子書城
|
客服中心
文學小說
商管創投
人文藝坊
勵志養生
進修學習
科學工程
家庭親子
玩樂天地
書名
出版社
作者
isbn
編號
英語會話
|
成交的秘密
|
霹靂影音寫真特典
|
App程式設計入門:iPhone、iPad(附光碟)
.
Oracle PL/
文學小說
文學
|
小說
商管創投
財經投資
|
行銷企管
人文藝坊
宗教、哲學
社會、人文、史地
藝術、美學
|
電影戲劇
勵志養生
醫療、保健
料理、生活百科
教育、心理、勵志
進修學習
電腦與網路
|
語言工具
雜誌、期刊
|
軍政、法律
參考、考試、教科用書
科學工程
科學、自然
|
工業、工程
家庭親子
家庭、親子、人際
青少年、童書
玩樂天地
旅遊、地圖
|
休閒娛樂
漫畫、插圖
|
限制級
Oracle PL/SQL Programming Guide to Oracle8i Features
作者:
Steven Feuerstein
分類:
電腦與網路
/
程式語言
出版社:
美商歐萊禮英文書
出版日期:1999/10/1
ISBN:1565926757
書籍編號:bk0013937
頁數:272
定價:
1050
元
特別會員價:
95
折
998
元
書價若有異動,以出版社實際定價為準
暫停販售
暫無供應商:尋找供貨商中(也有可能出版社已結束)。
團購數最低為 15 本以上
評價數:
(請將滑鼠移至星星處進行評價)
目前平均評價:
文字連結
複製語法
Oracle PL/SQL Programming Guide to Oracle8i Features
圖片連結
複製語法
分
享
內容簡介
同類推薦
● 內容簡介 ●
This concise and engaging guide will give you a jump start on the new PL/SQL features of Oracle8i (Oracle's revolutionary "Internet database"). It covers autonomous transactions, invoker rights, native dynamic SQL, bulk binds and collects, system-level database triggers, new built-in packages, fine-grained access control, calling Java methods from within PL/SQL, and much more. Includes a diskette containing 100 files of reusable source code and examples. Oracle8i, the long-awaited "Internet database" from Oracle Corporation, has hit the streets running--and you may find yourself struggling to keep up with Oracle's fast-moving technology. Oracle boasts that Oracle8i offers more than 150 new features, many of them designed to make its popular database programming language, PL/SQL, faster, more powerful, and easier to use. This concise and engaging book is both a companion to Oracle PL/SQL Programming (widely recognized as the "bible" for PL/SQL developers) and a guide designed to bring you up to speed as quickly as possible on the new PL/SQL features of Oracle8i. Following the style of Feuerstein's earlier books, the Guide to Oracle8i Features combines easy-to-understand descriptions of the new Oracle8i features with a wealth of interesting and informative examples. The major Oracle8i PL/SQL features include the following: ●Autonomous transactions--the ability to commit or roll back changes without affecting the "main" transaction in the rest of your session ●Invoker rights--At compilation time, you can now decide whether a program (or all programs in a package) should run under the authority of the definer or the invoker of that program ●Native dynamic SQL--A native implementation of dynamic SQL that's faster and easier than the DBMS_SQL built-in package ●Bulk binds and collects--A major performance improvement that lets you process multiple rows in a single operation ●System-level database triggers--With this feature and Advanced Queueing (AQ), you can take advantage of the publish/subscribe capabilities of Oracle8i ●Fine-grained access control--This feature lets you implement security policies with functions and then use those functions to implement row-level security on tables or views. ●Many new and enhanced built-in packages--New packages include DBMS_JAVA, DBMS_PROFILER, DBMS_TRACE, and more. DBMS_UTILITY, DBMS_AQ, and others have been enhanced as well. ●Calling Java methods from within PL/SQL--The book includes enough Java know-how to help you build simple Java classes, load them into the Oracle8i database, and leverage those classes from within your PL/SQL code. ●A variety of performance improvements Some PL/SQL developers are uneasy about what the introduction of Java means to their applications--and their programming future. But the two languages are expected to work well together in Oracle8i. You'll be able to take advantage of all the power of Java without giving up the performance and usability advantages of PL/SQL! Included with this book is a diskette containing an online tool developed by RevealNet, Inc., that provides point-and-click access to approximately 100 files of reusable source code and examples. The Guide to Oracle8i Features showcases all the powerful new features of Oracle8i designed especially for PL/SQL developers. You'll find it indispensable as you strive to take the fullest possible advantage of everything this exciting new version has to offer. Table of Contents: 1. Oracle8i: A Bounty for PL/SQL Developers 2. Choose Your Transaction! 3. Invoker Rights: Your Schema or Mine? 4. Native Dynamic SQL in Oracle8i 5. Bulking Up with PL/SQL 8.1 6. New Trigger Features in Oracle8i 7. New and Enhanced Built-in Packages in Oracle8i 8. Deploying Fine-Grained Access Control 9. Calling Java from PL/SQL 10. More Goodies for Oracle PL/SQL Developers
● 目錄 ●
Preface 1. Oracle8i: A Bounty for PL/SQL Developers What's in Oracle8i Release 8.1? And Then There's Java New PL/SQL Features Roundup 2. Choose Your Transaction! Transaction Management in PL/SQL Defining Autonomous Transactions When to Use Autonomous Transactions Rules and Restrictions Examples 3. Invoker Rights: Your Schema or Mine? A Look at the Definer Rights Model The Invoker Rights Model One Program, Multiple Schemas Combining the Definer and Invoker Rights Models 4. Native Dynamic SQL in Oracle8i DBMS_SQL Versus NDS NDS Statement Summary Multirow Queries with Cursor Variables Binding Variables Working with Objects and Collections Building Applications with NDS NDS Utility Package 5. Bulking Up with PL/SQL 8.1 Context-Switching Problem Scenarios Bulk DML with the FORALL Statement Bulk Querying with the BULK COLLECT Clause Using Cursor Attributes Analyzing the Impact of Bulk Operations 6. New Trigger Features in Oracle8i Triggers on Nested Table View Columns Database-Level Event Triggers Schema-Level Event Triggers 7. New and Enhanced Built-in Packages in Oracle8i DBMS_PROFILER: Providing Code Profiling DBMS_TRACE: Providing a PL/SQL Trace Facility DBMS_RLS: Implementing Fine-Grained Access Control UTL_COLL: Using Collection Locators LOB Enhancements New DBMS_AQ Features New DBMS_UTILITY Features 8. Deploying Fine-Grained Access Control FGAC Components CREATE CONTEXT: Creating Contexts SET_CONTEXT: Setting Context Attribute Values SYS_CONTEXT and LIST_CONTEXT: Obtaining Context Information A Complete FGAC Example 9. Calling Java from PL/SQL Oracle8i and Java Getting Ready to Use Java in Oracle A Simple Demonstration Using loadjava Using dropjava Managing Java in the Database Using DBMS_ JAVA and DBMS_ JAVA_TEST Publishing and Using Java in PL/SQL Examples 10. More Goodies for Oracle8i PL/SQL Developers The NOCOPY Parameter Mode Hint Calling Packaged Functions in SQL SQL99 Compliance SQL Operations on Collections Miscellaneous and Minor Improvements Appendix: What's on the Companion Disk?
● 作者簡介 ●
Steven Feuerstein Steven Feuerstein is considered one of the world's leading experts on the Oracle PL/SQL language. He is the author of Oracle PL/SQL Programming, Oracle Built-in Packages, Advanced Oracle PL/SQL Programming with Packages, Oracle PL/SQL Language Pocket Reference, and Oracle PL/SQL Built-ins Pocket Reference (all from O'Reilly & Associates). Steven has been developing software since 1980 and worked for Oracle Corporation from 1987 to 1992. As chief technology officer of RevealNet, Inc., he has designed several products for PL/SQL developers, including the PL/SQL Knowledge Base, PL/Vision, and PL/Generator. Steven hosts RevealNet's "PL/SQL Pipeline," an online community for PL/SQL developers (www.revealnet.com/plsql-pipeline) and can be reached through email at feuerstein@revealnet.com. Steven is president of the PL/Solutions training and consulting company (www.plsolutions.com). He also serves as codirector of the Oracle Practice at SSC, a Chicago-based consulting firm (www.saraswati.com). Steven shares a Rogers Park, Chicago, Georgian with his wife, Veva, his youngest son, Eli, two cats (Sister Itsacat and Moshe Jacobawitz), and Mercury (a Congo Red African Gray parrot). His older son, Chris, is busy making music and creating art nearby. Steven is a member of the Board of Directors of the Crossroads Fund, which provides grants to organizations in Chicago working for social change.
AI Agent 實
快速精通iOS 26
帶你用 Python
Software M
精通 Python|
演算法訓練營|入門篇
APCS 完全攻略:
軟體架構原理 第二版
我阿嬤都比你會測試:
邊玩邊學,使用Scr
Q1:若我已報名付了1000元訂金,接下來我要做什麼? A:感謝您報名,後續相關事情及服務我們會以e-mail和電話跟您聯絡. 您也可以主動來信(andy@book4u.com.tw)詢問。謝謝! Q2:我本身並沒有產品和服務,也沒什麼實務上的經驗,那又能如何賺錢呢?這個課程真的有實際成效嗎? A:我們這個課程共有11項贈品,其中第2項贈品便是資訊產品創造藍圖,它將教您如何用最簡潔而快速的方法創出屬於您自己的資訊產品。一般的課程大多是教您如何捕魚,但多數的成功致富者,其成功的關鍵卻不是仰賴捕魚技術,而是仰賴借力之術,因為唯有借力才能無中生有!才能快速成長!也才能快速致富!本課程3天共有三套樣版,其中一套樣版便是教您打造在沒有任何商品與服務,也沒有任何資源的情況下,就能快速借力致富的樣版!本課程二位講師都是白手起家,對於沒有實務經驗的新手會格外用心,請放心。 Q3:請問贈品中魚池矩陣直效聯盟VVIP是什麼? A:這是一個強大的系統,而我們送的是體驗版,會提供你Email追客系統。國外有一種函授課程,亦即每幾天發一個課程給學員, 就是用EMAIL追客系統來實踐。EMAIL追客系統簡單的說就是今天有一個客戶在你的網站上購買產品或註冊,系統會自動回覆一封確認信,之後你可以自行設計發送內容和發信時間一次一對多發給客戶,而且每封信還會帶入客戶本身的姓名。讓客戶以為是我們專門為客戶所量身訂作的信件。所以Email追客系統可以讓你培養跟客戶的信任感,進而成交。 Q4:請問贈品中資訊產品創造藍圖是什麼? A:這是一位叫林星?老師的課程,課程售價是9800元,現在免費送給你。此課程包含: ● 何謂資訊型產品? ● 資訊型產品的種類大解析!以及如何組織你的資訊型產品賺錢? ● 如何找到你的利基市場? ● 為什麼錯的利基市場,再好的產品與行銷也很難有效! ● 29個國外已經證實能讓你賺到錢的利基市場! ● 如何確保你做出來的產品客戶會很想購買?以及實際可執行的步驟! ● 創造資訊型產品計劃書 ● 15個步驟建立你的資訊型產品事業 ● E-mail精準行銷的10個法則 ● 10個別人沒有告訴你的有效文案撰寫法則 Q5:請問贈品中自動財富系統 6片DVD是什麼? A:此6片DVD定價3200元。內容為《借力淘金!最吸利的鈔級魚池賺錢術》作者之一王紫杰所錄製的DVD,內容為有關網路行銷的知識和技巧,非常豐富且實用,免費送給您。
為了保障您的權益,新絲路網路書店所購買的商品均享有到貨七天的鑑賞期(含例假日)。退回之商品必須於鑑賞期內寄回(以郵戳或收執聯為憑),且商品必須是全新狀態與完整包裝(商品、附件、內外包裝、隨貨文件、贈品等),否則恕不接受退貨。