PDF Reference, Second Edition

Total Page:16

File Type:pdf, Size:1020Kb

PDF Reference, Second Edition PDF Reference second edition Adobe Portable Document Format Version 1.3 Adobe Systems Incorporated ADDISON–WESLEY Boston • San Francisco • New York • Toronto • Montreal London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Library of Congress Cataloging-in-Publication Data Adobe portable document format, version 1.3 / Adobe Systems Incorporated. — 2nd ed. p. cm. Includes bibliographical references and index. ISBN 0-201-61588-6 1. Text processing (Computer science). 2. Adobe Acrobat. 3. Portable document software. I. Adobe Systems. QA76.76.T49 A36 2000 005.7′2—dc21 00-040581 © 1985–2000 Adobe Systems Incorporated. All rights reserved. NOTICE: All information contained herein is the property of Adobe Systems Incorporated. No part of this publication (whether in hardcopy or electronic form) may be reproduced or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written consent of the publisher. PostScript is a registered trademark of Adobe Systems Incorporated. All instances of the name PostScript in the text are references to the PostScript language as defined by Adobe Systems Incorporated unless otherwise stated. The name PostScript also is used as a product trademark for Adobe Systems’ implementation of the PostScript language interpreter. Except as other- wise stated, any mention of a “PostScript output device,” “PostScript printer,” “PostScript soft- ware,” or similar item refers to a product that contains PostScript technology created or licensed by Adobe Systems Incorporated, not to one that purports to be merely compatible. Adobe, the Adobe logo, Acrobat, the Acrobat logo, Adobe Garamond, Aldus, Distiller, Extreme, FrameMaker, Illustrator, InDesign, Minion, Myriad, PageMaker, Photoshop, Poetica, and PostScript are trademarks of Adobe Systems Incorporated. Apple, Mac, Macin- tosh, QuickDraw, and TrueType are trademarks of Apple Computer, Inc., registered in the United States and other countries. ITC Zapf Dingbats is a registered trademark of Interna- tional Typeface Corporation. Helvetica and Times are registered trademarks of Linotype-Hell AG and/or its subsidiaries. Microsoft and Windows are either registered trademarks or trade- marks of Microsoft Corporation in the United States and/or other countries. Times New Roman is a trademark of The Monotype Corporation registered in the U.S. Patent and Trade- mark Office and may be registered in certain other jurisdictions. Ryumin Light is a trademark of Morisawa & Co., Ltd. UNIX is a registered trademark of The Open Group. PANTONE is a registered trademark and Hexachrome is a trademark of Pantone, Inc. QuarkXPress is a trade- mark of Quark, Inc. and/or certain of the Quark Affiliated Companies, Reg. U.S. Pat. & Tm. Off. and in many other countries. Unicode is a registered trademark of Unicode, Inc. All other trademarks are the property of their respective owners. This publication and the information herein are furnished AS IS, are subject to change with- out notice, and should not be construed as a commitment by Adobe Systems Incorporated. Adobe Systems Incorporated assumes no responsibility or liability for any errors or inaccura- cies, makes no warranty of any kind (express, implied, or statutory) with respect to this pub- lication, and expressly disclaims any and all warranties of merchantability, fitness for particular purposes, and noninfringement of third-party rights. 1 2 3 4 5 6 7 8 9-MA-0403020100 First printing, July 2000 iii Contents Preface xv Chapter 1: Introduction 1 1.1 About This Book 1 1.2 Introduction to PDF 1.3 Features 3 1.3 Related Publications 4 1.4 Copyright Permission 5 Chapter 2: Overview 7 2.1 Imaging Model 8 2.2 Other General Properties 12 2.3 Using PDF 17 2.4 PDF and the PostScript Language 19 Chapter 3: Syntax 21 3.1 Lexical Conventions 22 3.2 Objects 25 3.3 Details of Filtered Streams 41 3.4 File Structure 55 3.5 Encryption 64 3.6 Document Structure 71 3.7 Content Streams and Resources 82 3.8 Common Data Structures 86 3.9 Functions 95 3.10 File Specifications 107 Chapter 4: Graphics 119 4.1 Graphics Objects 120 4.2 Coordinate Systems 124 4.3 Graphics State 134 4.4 Path Construction and Painting 147 4.5 Color Spaces 157 4.6 Patterns 200 4.7 External Objects 243 4.8 Images 244 4.9 Form XObjects 263 4.10 PostScript XObjects 267 iv Contents Chapter 5: Fonts 269 5.1 Organization and Use of Fonts 269 5.2 Text State Parameters and Operators 278 5.3 Text Objects 285 5.4 Introduction to Font Data Structures 291 5.5 Simple Fonts 293 5.6 Composite Fonts 310 5.7 Font Descriptors 330 5.8 Embedded Font Programs 339 5.9 ToUnicode CMaps 342 Chapter 6: Rendering 347 6.1 CIE-Based Color to Device Color 348 6.2 Conversions among Device Color Spaces 350 6.3 Transfer Functions 354 6.4 Halftones 356 6.5 Scan Conversion Details 377 Chapter 7: Interactive Features 383 7.1 Viewer Preferences 383 7.2 Document-Level Navigation 384 7.3 Page-Level Navigation 391 7.4 Annotations 398 7.5 Actions 420 7.6 Interactive Forms 434 7.7 Sounds 468 7.8 Movies 470 Chapter 8: Document Interchange 473 8.1 Procedure Sets 473 8.2 Document Information Dictionary 474 8.3 File Identifiers 476 8.4 Application Data 477 8.5 Web Capture 507 8.6 Prepress Support 524 Appendix A: Operator Summary 539 Appendix B: Operators in Type 4 Functions 543 B.1 Arithmetic Operators 543 B.2 Relational, Boolean, and Bitwise Operators 544 B.3 Conditional Operators 544 B.4 Stack Operators 544 v Contents Appendix C: Implementation Limits 545 C.1 General Implementation Limits 546 C.2 Implementation Limits Affecting Web Capture 547 Appendix D: Character Sets and Encodings 549 D.1 Latin Character Set and Encodings 551 D.2 Expert Set and MacExpertEncoding 555 D.3 Symbol Set and Encoding 558 D.4 ZapfDingbats Set and Encoding 561 Appendix E: PDF Name Registry 563 Appendix F: Linearized PDF 565 F.1 Background and Assumptions 567 F.2 Linearized PDF Document Structure 569 F.3 Hint Tables 581 F.4 Access Strategies 591 Appendix G: Example PDF Files 597 G.1 Minimal PDF File 597 G.2 Simple Text String Example 600 G.3 Simple Graphics Example 602 G.4 Page Tree Example 605 G.5 Outline Tree Example 610 G.6 Updating Example 614 Appendix H: Compatibility and Implementation Notes 623 H.1 PDF Version Numbers 624 H.2 Dictionary Keys 625 H.3 Implementation Notes 625 Bibliography 643 Index 649 vii Figures 2.1 Creating PDF files using PDF Writer 18 2.2 Creating PDF files using Acrobat Distiller 19 3.1 PDF components 22 3.2 Initial structure of a PDF file 55 3.3 Structure of an updated PDF file 63 3.4 Structure of a PDF document 72 3.5 Inheritance of attributes 81 3.6 Mapping with the Decode array 101 4.1 Graphics objects 122 4.2 Device space 125 4.3 User space 127 4.4 Relationships among coordinate systems 129 4.5 Effects of coordinate transformations 130 4.6 Effect of transformation order 131 4.7 Miter length 141 4.8 Cubic Bézier curve generated by the c operator 151 4.9 Cubic Bézier curves generated by the v and y operators 151 4.10 Nonzero winding number rule 155 4.11 Even-odd rule 156 4.12 Color specification 158 4.13 Color rendering 159 4.14 Component transformations in a CIE-based ABC color space 166 4.15 Component transformations in a CIE-based A color space 167 4.16 Quadtone image using Indexed DeviceN 193 4.17 Output from Example 4.19 208 4.18 Output from Example 4.20 212 4.19 Radial shading 224 4.20 Starting a new triangle in a free-form Gouraud-shaded triangle mesh 227 4.21 Connecting triangles in a free-form Gouraud-shaded triangle mesh 228 4.22 Varying the value of the edge flag to create different shapes 229 4.23 Lattice-form triangular meshes 230 4.24 Coordinate mapping from a unit square to a four-sided Coons patch 233 4.25 Painted area and boundary of a Coons patch 234 4.26 Color values and edge flags in Coons patch meshes 236 4.27 Edge connections in a Coons patch mesh 237 viii Contents 4.28 Control points in a tensor-product mesh 239 4.29 Typical sampled image 244 4.30 Source image coordinate system 247 4.31 Mapping the source image 248 5.1 Glyphs painted in 50% gray 273 5.2 Glyph outlines treated as a stroked path 274 5.3 Graphics clipped by a glyph path 275 5.4 Glyph metrics 276 5.5 Metrics for horizontal and vertical writing modes 278 5.6 Character spacing in horizontal writing 281 5.7 Word spacing in horizontal writing 281 5.8 Horizontal scaling 282 5.9 Leading 282 5.10 Text rise 285 5.11 Operation of TJ operator in horizontal writing 289 5.12 Output from Example 5.9 304 5.13 Characteristics represented in the Flags entry of a font descriptor 333 6.1 Various halftoning effects 363 6.2 Halftone cell with a nonzero angle 369 6.3 Angled halftone cell divided into two squares 370 6.4 Halftone cell and two squares tiled across device space 370 6.5 Tiling of device space in a type 16 halftone 372 6.6 Flatness tolerance 378 6.7 Rasterization without stroke adjustment 381 7.1 Presentation timing 397 7.2 Open annotation 399 7.3 Coordinate adjustment with the NoRotate flag 404 7.4 Square and circle annotations 413 7.5 QuadPoints specification 414 7.6 FDF file structure 461 8.1 Simple Web Capture file structure 510 8.2 Complex Web Capture file structure 511 8.3 Page boundaries 526 8.4 Trapping example 529 G.1 Visual representation of Example G.3 603 G.2 Page tree for 62-page document 605 G.3 Document outline as displayed in Example G.5 610 G.4 Document outline as displayed in Example G.6 612 ix Tables 3.1 White-space characters 24 3.2 Escape sequences in literal strings 28 3.3 Examples of literal names using the # character
Recommended publications
  • Reference & Manual
    DynaPDF 4.0 Reference & Manual API Reference Version 4.0.59 September 16, 2021 Legal Notices Copyright: © 2003-2021 Jens Boschulte, DynaForms GmbH. All rights reserved. DynaForms GmbH Burbecker Street 24 D-58285 Gevelsberg, Germany Trade Register HRB 9770, District Court Hagen CEO Jens Boschulte Phone: ++49 23 32-666 78 37 Fax: ++49 23 32-666 78 38 If you have questions please send an email to [email protected], or contact us by phone. This publication and the information herein is furnished as is, is subject to change without notice, and should not be construed as a commitment by DynaForms GmbH. DynaForms assumes no responsibility or liability for any errors or inaccuracies, makes no warranty of any kind (express, implied or statutory) with respect to this publication, and expressly disclaims any and all warranties of merchantability, fitness for particular purposes and no infringement of third-party rights. Adobe, Acrobat, and PostScript are trademarks of Adobe Systems Inc. AIX, IBM, and OS/390, are trademarks of International Business Machines Corporation. Microsoft, Windows, and Windows NT are trademarks of Microsoft Corporation. Apple, Mac OS, and Safari are trademarks of Apple Computer, Inc. registered in the United States and other countries. TrueType is a trademark of Apple Computer, Inc. Unicode and the Unicode logo are trademarks of Unicode, Inc. UNIX is a trademark of The Open Group. Solaris is a trademark of Sun Microsystems, Inc. Tru64 is a trademark of Hewlett-Packard. Linux is a trademark of Linus Torvalds. Other company product and service names may be trademarks or service marks of others.
    [Show full text]
  • Pdflib Reference Manual
    PDFlib GmbH München, Germany Reference Manual ® A library for generating PDF on the fly Version 5.0.2 www.pdflib.com Copyright © 1997–2003 PDFlib GmbH and Thomas Merz. All rights reserved. PDFlib GmbH Tal 40, 80331 München, Germany http://www.pdflib.com phone +49 • 89 • 29 16 46 87 fax +49 • 89 • 29 16 46 86 If you have questions check the PDFlib mailing list and archive at http://groups.yahoo.com/group/pdflib Licensing contact: [email protected] Support for commercial PDFlib licensees: [email protected] (please include your license number) This publication and the information herein is furnished as is, is subject to change without notice, and should not be construed as a commitment by PDFlib GmbH. PDFlib GmbH assumes no responsibility or lia- bility for any errors or inaccuracies, makes no warranty of any kind (express, implied or statutory) with re- spect to this publication, and expressly disclaims any and all warranties of merchantability, fitness for par- ticular purposes and noninfringement of third party rights. PDFlib and the PDFlib logo are registered trademarks of PDFlib GmbH. PDFlib licensees are granted the right to use the PDFlib name and logo in their product documentation. However, this is not required. Adobe, Acrobat, and PostScript are trademarks of Adobe Systems Inc. AIX, IBM, OS/390, WebSphere, iSeries, and zSeries are trademarks of International Business Machines Corporation. ActiveX, Microsoft, Windows, and Windows NT are trademarks of Microsoft Corporation. Apple, Macintosh and TrueType are trademarks of Apple Computer, Inc. Unicode and the Unicode logo are trademarks of Unicode, Inc. Unix is a trademark of The Open Group.
    [Show full text]
  • Legacy Character Sets & Encodings
    Legacy & Not-So-Legacy Character Sets & Encodings Ken Lunde CJKV Type Development Adobe Systems Incorporated bc ftp://ftp.oreilly.com/pub/examples/nutshell/cjkv/unicode/iuc15-tb1-slides.pdf Tutorial Overview dc • What is a character set? What is an encoding? • How are character sets and encodings different? • Legacy character sets. • Non-legacy character sets. • Legacy encodings. • How does Unicode fit it? • Code conversion issues. • Disclaimer: The focus of this tutorial is primarily on Asian (CJKV) issues, which tend to be complex from a character set and encoding standpoint. 15th International Unicode Conference Copyright © 1999 Adobe Systems Incorporated Terminology & Abbreviations dc • GB (China) — Stands for “Guo Biao” (国标 guóbiâo ). — Short for “Guojia Biaozhun” (国家标准 guójiâ biâozhün). — Means “National Standard.” • GB/T (China) — “T” stands for “Tui” (推 tuî ). — Short for “Tuijian” (推荐 tuîjiàn ). — “T” means “Recommended.” • CNS (Taiwan) — 中國國家標準 ( zhôngguó guójiâ biâozhün) in Chinese. — Abbreviation for “Chinese National Standard.” 15th International Unicode Conference Copyright © 1999 Adobe Systems Incorporated Terminology & Abbreviations (Cont’d) dc • GCCS (Hong Kong) — Abbreviation for “Government Chinese Character Set.” • JIS (Japan) — 日本工業規格 ( nihon kôgyô kikaku) in Japanese. — Abbreviation for “Japanese Industrial Standard.” — 〄 • KS (Korea) — 한국 공업 규격 (韓國工業規格 hangug gongeob gyugyeog) in Korean. — Abbreviation for “Korean Standard.” — ㉿ — Designation change from “C” to “X” on August 20, 1997. 15th International Unicode Conference Copyright © 1999 Adobe Systems Incorporated Terminology & Abbreviations (Cont’d) dc • TCVN (Vietnam) — Tiu Chun Vit Nam in Vietnamese. — Means “Vietnamese Standard.” • CJKV — Chinese, Japanese, Korean, and Vietnamese. 15th International Unicode Conference Copyright © 1999 Adobe Systems Incorporated What Is A Character Set? dc • A collection of characters that are intended to be used together to create meaningful text.
    [Show full text]
  • Implementing Cross-Locale CJKV Code Conversion
    Implementing Cross-Locale CJKV Code Conversion Ken Lunde CJKV Type Development Adobe Systems Incorporated bc ftp://ftp.oreilly.com/pub/examples/nutshell/ujip/unicode/iuc13-c2-paper.pdf ftp://ftp.oreilly.com/pub/examples/nutshell/ujip/unicode/iuc13-c2-slides.pdf Code Conversion Basics dc • Algorithmic code conversion — Within a single locale: Shift-JIS, EUC-JP, and ISO-2022-JP — A purely mathematical process • Table-driven code conversion — Required across locales: Chinese ↔ Japanese — Required when dealing with Unicode — Mapping tables are required — Can sometimes be faster than algorithmic code conversion— depends on the implementation September 10, 1998 Copyright © 1998 Adobe Systems Incorporated Code Conversion Basics (Cont’d) dc • CJKV character set differences — Different number of characters — Different ordering of characters — Different characters September 10, 1998 Copyright © 1998 Adobe Systems Incorporated Character Sets Versus Encodings dc • Common CJKV character set standards — China: GB 1988-89, GB 2312-80; GB 1988-89, GBK — Taiwan: ASCII, Big Five; CNS 5205-1989, CNS 11643-1992 — Hong Kong: ASCII, Big Five with Hong Kong extension — Japan: JIS X 0201-1997, JIS X 0208:1997, JIS X 0212-1990 — South Korea: KS X 1003:1993, KS X 1001:1992, KS X 1002:1991 — North Korea: ASCII (?), KPS 9566-97 — Vietnam: TCVN 5712:1993, TCVN 5773:1993, TCVN 6056:1995 • Common CJKV encodings — Locale-independent: EUC-*, ISO-2022-* — Locale-specific: GBK, Big Five, Big Five Plus, Shift-JIS, Johab, Unified Hangul Code — Other: UCS-2, UCS-4, UTF-7, UTF-8,
    [Show full text]
  • Tru64 UNIX Technical Reference for Using Korean Features
    Tru64 UNIX Technical Reference for Using Korean Features August 2000 This guide provides the Korean-specific information and describes the Korean features supported on the Compaq Tru64 UNIX system. Software Version: Tru64 UNIX Version 5.1 or higher Compaq Computer Corporation Houston, Texas © 2000 Compaq Computer Corporation COMPAQ and the Compaq logo Registered in U.S. Patent and Trademark Office. Tru64 is a trademark of Compaq Information Technologies Group, L.P. Microsoft, Windows, and Windows NT are trademarks of Microsoft Corporation. Motif, OSF/1, UNIX, and X/Open are trademarks of The Open Group. All other product names mentioned herein may be trademarks or registered trademarks of their respective companies. Confidential computer software. Valid license from Compaq required for possession, use, or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. Compaq shall not be liable for technical or editorial errors or omissions contained herein. The information in this publication is subject to change without notice and is provided "as is" without warranty of any kind. The entire risk arising out of the use of this information remains with recipient. In no event shall Compaq be liable for any direct, consequential, incidental, special, punitive, or other damages whatsoever (including without limitation, damages for loss of business profits, business interruption or loss of business information), even if Compaq has been advised of the possibility of such damages. The foregoing shall apply regardless of the negligence or other fault of either party regardless of whether such liability sounds in contract, negligence, tort, or any other theory of legal liability, and notwithstanding any failure of essential purpose of any limited remedy.
    [Show full text]
  • The Complete Solutions Guide for Every Linux/Windows System Administrator!
    Integrating Linux and Windows Integrating Linux and Windows By Mike McCune Publisher : Prentice Hall PTR Pub Date : December 19, 2000 ISBN : 0-13-030670-3 • Pages : 416 The complete solutions guide for every Linux/Windows system administrator! This complete Linux/Windows integration guide offers detailed coverage of dual- boot issues, data compatibility, and networking. It also handles topics such as implementing Samba file/print services for Windows workstations and providing cross-platform database access. Running Linux and Windows in the same environment? Here's the comprehensive, up-to-the-minute solutions guide you've been searching for! In Integrating Linux and Windows, top consultant Mike McCune brings together hundreds of solutions for the problems that Linux/Windows system administrators encounter most often. McCune focuses on the critical interoperability issues real businesses face: networking, program/data compatibility, dual-boot systems, and more. You'll discover exactly how to: Use Samba and Linux to deliver high-performance, low-cost file and print services to Windows workstations Compare and implement the best Linux/Windows connectivity techniques: NFS, FTP, remote commands, secure shell, telnet, and more Provide reliable data exchange between Microsoft Office and StarOffice for Linux Provide high-performance cross-platform database access via ODBC Make the most of platform-independent, browser-based applications Manage Linux and Windows on the same workstation: boot managers, partitioning, compressed drives, file systems, and more. For anyone running both Linux and Windows, McCune delivers honest and objective explanations of all your integration options, plus realistic, proven solutions you won't find anywhere else. Integrating Linux and Windows will help you keep your users happy, your costs under control, and your sanity intact! 1 Integrating Linux and Windows 2 Integrating Linux and Windows Library of Congress Cataloging-in-Publication Data McCune, Mike.
    [Show full text]
  • Jewelers Holds Steadfast to Mode! JVM140
    SERVING CRANFORD, GARWOOD and KENILWORTH A Forbes Newspaper •USPS 136 800 Second Class ____,„ Vol. 97 No. 51 Published Every Thursday Thursday, December 20,1990 Postage Paid Cranford, N.J. 50 CENTS vtf- • In brief County paves stretch Holiday closings of Riverside Drive Municipal offices will • be closed both Monday and leading to Boulevard Tuesday of Christmas and New Year's weeks. This in- county. To date; county freehold- cludes the libraiy, recreation By Cheryl Moulton ers, and other county officials programs, senior citizen ac- . Residents of Riverside Drive re- have no knowledge as to when or tivities and bus service, and ceived an early Christmas present why the roadway was paved or municipal government offices. from the- county on Dec. 11—the who gave the go ahead for the Township, building workers paving of a stretch 6f roadway di- project As far as the residents switched their Lincdln's Birth- rectly connecting their quiet resi- know "there had been an under- day and Veterans Day holidays dential -area with Kenilworth Bou- standulg" this section of Riverside for Christmas Eve and New levard, a change they say will ad- Drive would remain unpaved. The Year's Eve. Normal service versely affect their quality of life basis for this, understanding was will be provided Dec. 24 and and safety. not explained. 31 by the Post Office, banks, The quiet street, winding along Residents of Riverside Drive garbage collectors and Motor the river, previously led onto a flocked to the Dec. 11 Township Vehicle Services. Public stretch of unpaved, impassable Committee meeting seeking an- schools and Union County Col- county parkland roadway leading swers to their questions, but the lege will have hill days of to Kenilworth Boulevard.
    [Show full text]
  • Implementing Cross-Locale CJKV Code Conversion
    Implementing Cross-locale CJKV Code Conversion Ken Lunde, Adobe Systems Incorporated [email protected] http://www.oreilly.com/~lunde/ 1. Introduction Most operating systems today deal with single locales. Within a single CJKV locale, different operating sys- tems often use different encodings for the same character set. Consider Shift-JIS and EUC-JP encodings for Japanese—Shift-JIS is historically used on MacOS and Windows, but EUC-JP is used on Unix. This makes code conversion a necessity. Code conversion within a single locale is, by and large, a trivial operation that typically involves a mathematical algorithm. In the past, a lot of code conversion was performed by users through dedicated software tools. Many of today’s applications include built-in code conversion routines, but these routines deal with only multiple encodings of a single locale (such as EUC-KR, ISO-2022-KR, Johab, and Unified hangul Code encodings for Korean). Code conversion across CJKV locales, such as between Chinese and Japanese, is more problematic. While Unicode serves as an excellent basis for implementing cross-locale code conversion, there are still problems to be addressed, such as unmappable characters. 2. Code Conversion Basics Converting between different encodings of a single locale, which represents a trivial effort that involves well- established code conversion algorithms (or mapping tables), is a well-understood process these days. How- ever, as soon as code conversion extends beyond a single locale, there are additional complexities that arise, such as the following: • Code conversion algorithms almost always must be replaced by mapping tables because the ordering of characters in different CJKV character sets are different.
    [Show full text]
  • “Konni” Malware 2019 Campaign
    “KONNI” MALWARE 2019 CAMPAIGN JANUARY 2020 CyberInt Copyright © All Rights Reserved 2020 1 Contents Executive Summary ................................................................................................................................................... 3 Campaign Timeline ................................................................................................................................................ 4 Execution flow ....................................................................................................................................................... 4 Konni Multi-Stage Operation .................................................................................................................................... 5 Stage 1 – Initial Execution ...................................................................................................................................... 5 Stage 2 – Privilege Escalation ................................................................................................................................ 8 Token Impersonation Routine ......................................................................................................................... 11 Stage 3 – Persistence........................................................................................................................................... 15 Stage 4 – Data Reconnaissance and Exfiltration ................................................................................................. 17 Data
    [Show full text]
  • Teradata Call-Level Interface Version 2 Reference for Channel-Attached Systems
    Teradata Call-Level Interface Version 2 Reference for Channel-Attached Systems Release 13.10 B035-2417-020A February 2010 The product or products described in this book are licensed products of Teradata Corporation or its affiliates. Teradata, BYNET, DBC/1012, DecisionCast, DecisionFlow, DecisionPoint, Eye logo design, InfoWise, Meta Warehouse, MyCommerce, SeeChain, SeeCommerce, SeeRisk, Teradata Decision Experts, Teradata Source Experts, WebAnalyst, and You’ve Never Seen Your Business Like This Before are trademarks or registered trademarks of Teradata Corporation or its affiliates. Adaptec and SCSISelect are trademarks or registered trademarks of Adaptec, Inc. AMD Opteron and Opteron are trademarks of Advanced Micro Devices, Inc. BakBone and NetVault are trademarks or registered trademarks of BakBone Software, Inc. EMC, PowerPath, SRDF, and Symmetrix are registered trademarks of EMC Corporation. GoldenGate is a trademark of GoldenGate Software, Inc. Hewlett-Packard and HP are registered trademarks of Hewlett-Packard Company. Intel, Pentium, and XEON are registered trademarks of Intel Corporation. IBM, CICS, RACF, Tivoli, and z/OS are registered trademarks of International Business Machines Corporation. Linux is a registered trademark of Linus Torvalds. LSI and Engenio are registered trademarks of LSI Corporation. Microsoft, Active Directory, Windows, Windows NT, and Windows Server are registered trademarks of Microsoft Corporation in the United States and other countries. Novell and SUSE are registered trademarks of Novell, Inc., in the United States and other countries. QLogic and SANbox are trademarks or registered trademarks of QLogic Corporation. SAS and SAS/C are trademarks or registered trademarks of SAS Institute Inc. SPARC is a registered trademark of SPARC International, Inc. Sun Microsystems, Solaris, Sun, and Sun Java are trademarks or registered trademarks of Sun Microsystems, Inc., in the United States and other countries.
    [Show full text]
  • The Database Server
    Administration and Performance Guide Adaptive Server® IQ 12.4.2 DOCUMENT ID: 38152-01-1242-01 LAST REVISED: April 2000 Copyright © 1989-2000 by Sybase, Inc. All rights reserved. This publication pertains to Sybase database management software and to any subsequent release until otherwise indicated in new editions or technical notes. Information in this document is subject to change without notice. The software described herein is furnished under a license agreement, and it may be used or copied only in accordance with the terms of that agreement. To order additional documents, U.S. and Canadian customers should call Customer Fulfillment at (800) 685-8225, fax (617) 229-9845. Customers in other countries with a U.S. license agreement may contact Customer Fulfillment via the above fax number. All other international customers should contact their Sybase subsidiary or local distributor. Upgrades are provided only at regularly scheduled software release dates. No part of this publication may be reproduced, transmitted, or translated in any form or by any means, electronic, mechanical, manual, optical, or otherwise, without the prior written permission of Sybase, Inc. Sybase, the Sybase logo, ADA Workbench, Adaptable Windowing Environment, Adaptive Component Architecture, Adaptive Server, Adaptive Server Anywhere, Adaptive Server Enterprise, Adaptive Server Enterprise Monitor, Adaptive Server Enterprise Replication, Adaptive Server Everywhere, Adaptive Server IQ, Adaptive Warehouse, AnswerBase, Anywhere Studio, Application Manager, AppModeler,
    [Show full text]
  • Starts Today $1
    w THURSDAY, DECEMBER 26, 1968 The Weather PAOi Twnnr-EiGHT iKanrtfPBtrr lEwning l|fraU» Avm gg Dafljr Not Prggg Rm Gold with onow cootinuliig Ite w Weah MO. to the night Lowa In aOa. Ae- lage haa plans to eaudraot tt> cumulatioiw 8 to • Inchea be­ aervad as an aocaaa road for a 16, froim ttw sta te to ttw U J , Nevaiwhtr Ig, 1MB fore changing to aleet. Tomer- Tba flatdor dwtai «< North Fenton obooM. Favon tor the traya Town Regains M ancheeter Community OoDaga Gtovananent. campus on land oft HDMown ila n r l| r 0t?r iEiirnttig H^raUi were made by the auxlUary and row rabi, high In 80a United XathOdlat Ohureh and campus, originally plwhad lor The govemmant had odb- Rd. About Town the girl acoute. iraMb ODBgratatloiial Cbnreh of Strip of 'Land he NilU Site. veyed ttw Nike Site land to ttw 1 5 .3 4 1 Mmnehaatar— A City of Village Charm Hartford wU praaant a Chrtat- Hospital Patients Flrat grade pttpila at tlw ■nnm of M aneheater on July M, h m BpNT C M «01 IBMt Skinner Road School made a In a . quitclaim deed dteied $200,000 in Refunds PRICX t e n ’c eo tb ____ _ Jan. U at aw rfi*- maa ooneait Sunday a t 7 :k0 p.m . To Nike Site Dec. 16, signed by State Treas­ 1066, under th e stIputeiMon th a t (Obwalftod Advertlabig on Vpgo 14) at North Methodiat Church, aoo Enjoy Turkey variety of flgurea out of p^per <t would be tor educational use Held by Tax Office MANCHESTER, CONN., PRTOAY, DECEMBER 27, 1988 hnwa.
    [Show full text]