The Unix CD Bookshelf, Third Edition
- Unix Power Tools, 3rd Edition
- Learning the Unix Operating System, 5th Edition
- Learning the vi Editor, 6th Edition
- Mac OS X for Unix Geeks
- Learning the Korn Shell, 2nd Edition
- sed & awk, 2nd Edition
- Unix in a Nutshell, 3rd Edition
Publisher | O'Reilly Media, Inc. |
Author(s) | O'Reilly Media, Inc. |
ISBN | 0-596-00392-7 |
Release Date | January 2003 |
Page | 616 |
Windows 2000 Commands Pocket Reference
Publisher | O'Reilly Media, Inc. |
Author(s) | Æleen Frisch |
ISBN | 0-596-00148-7 |
Release Date | March 2001 |
Page | 116 |
Oracle PL/SQL Built-ins Pocket Reference
- Character functions: Operate on character data. Examples include CONCAT (concatenates two strings into one), LENGTH (returns the length of a string), and REPLACE (replaces a character sequence in a string with a different set of characters).
- Date functions: Operate on dates and supplement the DATE datatype. Examples include SYSDATE (returns the current date and time in the Oracle Server) and LAST_DAY (returns the last day in the month of the specified date).
- Numeric functions: Operate on numeric data. Examples include CEIL (returns the smallest integer greater than or equal to the specified number) and POWER (returns a number raised to a particular power).
- LOB functions: Operate on large object data. Examples include EMPTY_BLOB (returns an empty locator of the binary large object type) and EMPTY_CLOB (returns an empty locator of the character large object type).
- Conversion functions: Perform explicit conversions of different types of data. Examples include TO_CHAR (converts a number or date to a string) and TO_NUMBER (converts a string to a number).
- Miscellaneous functions. Examples include GREATEST (returns the greatest of the specified list of values) and UID (returns the user ID of the current Oracle session).
- DBMS_SQL executes dynamically constructed SQL statements and PL/SQL blocks of code.
- DBMS_PIPE communicates between different Oracle sessions through a pipe in the RDBMS shared memory.
- DBMS_JOB submits and manages regularly scheduled jobs for execution inside the database.
- DBMS_LOB accesses and manipulates Oracle8's large objects (LOBs) from within PL/SQL programs.
Publisher | O'Reilly Media, Inc. |
Author(s) | Steven Feuerstein, John Beresniewicz, Chip Dawes |
ISBN | 1-56592-456-8 |
Release Date | October 1998 |
Page | 76 |
Oracle Web Applications: PL/SQL Developer's Introduction
- PL/SQL-- a structured programming language that combines procedural constructs and standard SQL. It offers such features as cursors, loops, conditional and sequential control statements, exception handlers, records, tables, and constructs for developing modular code (functions, procedures, and packages).
- PL/SQL Toolkit -- a set of PL/SQL packages supplied by Oracle for use in developing Web applications.
- HTML -- an ASCII-based markup language used to create Web pages.
- WebDB -- A software system for building, monitoring, and creating content-driven Web sites; it allows users to use a Web browser to access and store information in the Oracle8i database.
- Oracle Application Server (OAS) -- an extensible Web server that uses plug-in programs called cartridges to allow database-integrated Web systems to be developed in a variety of languages (e.g., PL/SQL, Java, Perl).
- XML -- An emerging standard for creating self-describing documents. It is similar to HTML but allows you to create your own markup tags. XML is expected to be a key technology in electronic commerce systems.
- The book also presents several fully realized sample Web applications that will teach you how to build such applications of your own.
Publisher | O'Reilly Media, Inc. |
Author(s) | Andrew Odewahn |
ISBN | 1-56592-687-0 |
Release Date | September 1999 |
Page | 256 |
Advanced Oracle PL/SQL Programming with Packages
- Building block packages: low-level development enhancers, including string parsers, a list manager, and an interface to PL/SQL tables.
- Developer utilities: programs that improve your PL/SQL development environment, including a code generator, a powerful substitute for SHOW ERRORS, and an online help delivery mechanism.
- Plug-and-play components: pieces of code that can be used as is in your own applications, including a high-level exception handler mechanism and a generic, reusable logging mechanism.
Publisher | O'Reilly Media, Inc. |
Author(s) | Steven Feuerstein |
ISBN | 1-56592-238-7 |
Release Date | October 1996 |
Page | 687 |
Oracle Built-in Packages
- DBMS_SQL executes dynamically constructed SQL statements and PL/SQL blocks of code.
- DBMS_PIPE communicates between different Oracle sessions through a pipe in the RDBMS shared memory.
- DBMS_JOB submits and manages regularly scheduled jobs for execution inside the database.
- DBMS_LOB accesses and manipulates Oracle8's large objects (LOBs) from within PL/SQL programs.
- 1. Introduction
- Executing Dynamic SQL and PL/SQL
- Intersession Communication
- User Lock and Transaction Management
- Oracle Advanced Queuing
- Generating Output from PL/SQL Programs
- Defining an Application Profile
- Managing Large Objects
- Datatype Packages
- Miscellaneous Packages
- Managing Session Information
- Managing Server Resources
- Job Scheduling in the Database
- Snapshots
- Advanced Replication
- Conflict Resolution
- Deferred Transactions and Remote Procedure Calls
Publisher | O'Reilly Media, Inc. |
Author(s) | Steven Feuerstein, Charles Dye, John Beresniewicz |
ISBN | 1-56592-375-8 |
Release Date | May 1998 |
Page | 952 |
Microsoft ASP.NET AJAX [Total Training]
http://rapidshare.com/files/160994408/ajax.part02.rar
http://rapidshare.com/files/160994292/ajax.part03.rar
http://rapidshare.com/files/160994386/ajax.part04.rar
http://rapidshare.com/files/160994271/ajax.part05.rar
http://rapidshare.com/files/160994368/ajax.part06.rar
http://rapidshare.com/files/160994366/ajax.part07.rar
http://rapidshare.com/files/160994395/ajax.part08.rar
http://rapidshare.com/files/160994269/ajax.part09.rar
http://rapidshare.com/files/160994252/ajax.part10.rar
Password default: netbks.com
Ajax VTC Training CD
http://rapidshare.com/files/74902793/VTC_AJAX.part2.rar
http://rapidshare.com/files/74902640/VTC_AJAX.part3.rar
http://rapidshare.com/files/88275280/VTC_AJAX.part04.rar
http://rapidshare.com/files/88275312/VTC_AJAX.part05.rar
http://rapidshare.com/files/88275320/VTC_AJAX.part06.rar
http://rapidshare.com/files/88275283/VTC_AJAX.part07.rar
http://rapidshare.com/files/88275272/VTC_AJAX.part08.rar
Oracle PL/SQL Programming: A Developer's Workbook
- Basic language elements--variables, naming, loops, conditional and sequential control, exception handling, and records.
- Data structures--index-by tables, nested tables, variables arrays (VARRAYs), and object technology.
- Database interaction--cursors, DML and transaction management, cursor variables, and native dynamic SQL
- Program construction--procedures, functions, blocks, packages, database triggers, and calling PL/SQL functions in SQL.
- Built-in functionality--the character, date, conversion, numeric, and miscellaneous functions, and the DBMS_SQL, DBMS_PIPE, DBMS_OUTPUT, UTL_FILE, and DBMS_JOB built-in packages.
- Miscellaneous topics--using Java with PL/SQL, external programs, PL/SQL web development, tuning PL/SQL, and PL/SQL for DBAs.
Publisher | O'Reilly Media, Inc. |
Author(s) | Steven Feuerstein, Andrew Odewahn |
ISBN | 1-56592-674-9 |
Release Date | May 2000 |
Page | 592 |
Learning Oracle PL/SQL
* PL/SQL--what is it, and why use it? Why use PL/SQL instead of Java?
* Syntax and examples of all core language constructs
* Creating, using, and reusing stored procedures, functions, and packages
* Building web-based applications using PL/SQL features available "out of the box" (such as PL/SQL Server Pages)
* Securing PL/SQL programs against attack
* Benefits of third-party developer tools and integrated development environments
* Connecting PL/SQL to email, Java, and the Internet
Meticulously crafted with all-new examples downloadable from examples.oreilly.com/learnoracle, the book addresses language features available in all versions of Oracle, from Oracle7 to Oracle8i to Oracle9i. Learning Oracle PL/SQL was written by PL/SQL experts Bill Pribyl and Steven Feuerstein, whose easy-to-read style and attention to detail has made other O'Reilly books (such as the bestselling Oracle PL/SQL Programming) very popular among Oracle developers worldwide. Learning Oracle PL/SQL is meant for a wide range of target audiences, including both beginning programmers and those already experienced with other programming languages. Whether you are a new developer, a crossover programmer from another database system, or a new database administrator who needs to learn PL/SQL, this book will get you well on your way. It is the perfect introduction to Oracle PL/SQL Programming, also by Pribyl and Feuerstein.
Publisher | O'Reilly Media, Inc. |
Author(s) | Bill Pribyl |
ISBN | 0-596-00180-0 |
Release Date | November 2001 |
Page | 424 |
Oracle PL/SQL Programming, Fourth Edition
The fourth edition is a comprehensive update, adding significant new content and extending coverage to include the very latest Oracle version, Oracle Database 10g Release 2. It describes such new features as the PL/SQL optimizing compiler, conditional compilation, compile-time warnings, regular expressions, set operators for nested tables, nonsequential collections in FORALL, the programmer-defined quoting mechanism, the ability to backtrace an exception to a line number, a variety of new built-in packages, and support for IEEE 754 compliant floating-point numbers.
The new edition adds brand-new chapters on security (including encryption, row-level security, fine-grained auditing, and application contexts), file, email, and web I/O (including the built-in packages DBMS_OUTPUT, UTL_FILE, UTL_MAIL, UTL_SMTP, and UTL_HTTP) and globalization and localization.
Co-authored by the world's foremost PL/SQL authority, Steven Feuerstein, this classic reference provides language syntax, best practices, and extensive code, ranging from simple examples to complete applications--making it a must-have on your road to PL/SQL mastery. A companion web site contains many more examples and additional technical content for enhanced learning.
Publisher | O'Reilly Media, Inc. |
Author(s) | Steven Feuerstein, Bill Pribyl |
ISBN | 0-596-00977-1 |
Release Date | August 2005 |
Page | 1198 |