APPENDIX A Selected Tables

Size: px
Start display at page:

Download "APPENDIX A Selected Tables"

Transcription

1 APPENDIX A Selected Tables SQL Server Data Types The data types available to you differ a great deal between Access and SQL Server. The following table lists all of the data types that can be used in SQL Server and their sizes and accuracies. For a description of what data type to choose in which situation, see "Choosing the Appropriate Data JYpe" in Chapter 8. Table A-1. SQL Server Data Types DATA TYPE binary DESCRIPTION Fixed-length binary (e.g., Word file) to a maximum size of8,000 bytes in SQL 7 and 255 bytes in SQL 6.5. bit char datetime decimal float image int money nchar ntext Integer (whole number) that is either a 1 or a 0. Fixed-length non-unicode text data to a maximum length of8,000 characters in SQL 7 and 255 characters in SQL 6.5. Date/time data between January 1, 1753 and December 31, Accurate to 3.33 milliseconds. Fixed precision (maximum total number of digits that can be stored left and right of the decimal) and scale (maximum total number of digits that can be stored right of the decimal) between and Floating point precision number between E308 and 1. 79E308. Variable-length binary (such as a file) to a maximum size of231-1 (2,147,483,647) bytes. Integer between -231 (-2,147,433,648) and (2,147,483,647). Monetary data accurate to 4 decimal places between -263 (-922,337,203,685, ) and 263 (922,337,203,685, ). (SQL 7 only) Fixed-length Unicode text data to a maximum length of 4,000 characters. (SQL 7 only) Variable-length Unicode text data to a maximum lengthof230-1 (1,073,741,823) characters. 321

2 Chapter A TableA-1. SQL Server Data 1Jpes (Continued) DATA TYPE numeric nvarchar real smalldatetime DESCRIPTION Same as decimal. (SQL 7 only) Variable-length Unicode text data to a maximum length of 4,000 characters. Floating point precision number between -3.4E38 and 3.4E38. Date/time data between January 1, 1900 and June 6, Accurate to one minute. smallint Integer between -215(-32,768) and (32,767). smallmoney Monetary data accurate to 4 decimal places between -214, and 214, text timestamp Variable-length non-unicode text data to a maximum length of 231_1 (2,147,483,647) characters. Unique identifier based on time and date of record modification. Cannot be modified directly. tinyint Integer between 0 and 255. uniqueidentifier varbinary varchar (SQL 7 Only) A globally unique identifier (GUID), such as the ones that Access creates for replication information. Variable-length binary to a maximum size of 8,000 bytes in SQL 7 and 255 bytes in SQL 6.5. Variable-length non-unicode text data to a maximum length of 8,000 characters in SQL 7 and 255 characters in SQL

3 Selected Tables Microsoft Access ODBC Registry Settings When using ODBC with Microsoft Access, there are a number of Registry settings you can use to affect how Access deals with ODBC data. See Table A-2. These Registry settings must be entered under the key HKEY_LOCAL_MACHINE\SOFIWARE\Microsoft\Offi.ce\8.0\Access\ Jet\3.5\Engi.nes\ODBC for Access 97, or under the key HKEY_LOCAL_MACHINE\SOFIWARE\Microsoft\Office\9.0\Access\ Jet\4.0\Engi.nes\ODBC for Access If the key does not exist, create it in order to add the Registry values that you need to use. Table A-2. ODBC Jet Registry Settings TYPE DEFAULT DESCRIPTION Login Timeout REG_DWORD (DWORD) 20 Number of seconds to wait for the server to respond before a login attempt times out and is considered failed. QueryTimeout REG_DWORD 60 Number of seconds to wait for a synchronous query to complete before it is cancelled and considered failed. Connection Timeout REG_DWORD 600 Number of seconds to wait before an idle connection is closed. AsyncRetrylnterval REG_DWORD 500 Number of milliseconds to wait between polling server to determine status of an asynchronous request. AttachCaseSensitive REG_DWORD 0 Determines whether to match table names exactly or to find the first table name matching the request, regardless ofletter case. 0 means match first, 1 means match exact name. AttachableObjects REG_SZ (String) 'TABLE', 'VIEW', Server object types that can be attached as 'SYSTEM TABLE', linked tables. Separate each item by a 'AllAS', 'SYNONYM' comma and enclose each item in single quotes (as default is). 323

4 Chapter A Table A-2. ODBC Jet Registry Settings (Continued) NAME TYPE DEFAULT DESCRIPTION SnapshotOnly REG_DWORD 0 Determines whether to include or ignore indexes on linked tables, forcing recordset cursor type. If 0, indexes are used if possible and dynaset-type recordsets can be used. If 1, indexes are ignored and all recordsets are snapshot only. TraceSQIMode REG_DWORD 0 Specifies whether SQL statements sent to a data source by the ODBC driver should be logged to the me sqlout.txt. 0 for no, 1 for yes. TraceODBCAPI REG_DWORD 0 Species whether ODBC API calls generated by requests should be logged to the me odbcapi.txt. 0 for no, 1 for yes. DisableAsync REG_DWORD 1 Indicates whether to use synchronous queries at all times or to use asynchronous calls if possible. 0 to use asynchronous calls if possible, 1 for never to use them. TryJetAuth REG_DWORD 1 Indicates whether to try connecting to the ODBC data source using the current Jet user and password before prompting for other login. 0 for no, 1 for yes. Preparedlnsert REG_DWORD 0 Indicates whether to use an INSERT statement that includes all fields in the table for the updated record or only those fields that were updated. 0 for only affected columns, 1 for all. PreparedUpdate REG_DWORD 0 Same as Preparedlnsert, but for UPDATE instead. FastRequery REG_DWORD 0 Specifies whether to use prepared SELECT statements for parameterized queries and allow the statement to be reused without having to be reprepared each time. 0 for no, lforyes. 324

5 INDEX Symbols \ (backslash) operator, 61 # (pound) sign in identifiers in SQL Server 6.5 and 7, ## (double hash) sign, using with temporary tables in T-SQL, ##(double pound) sign in identifiers in SQL Server 6.5 and7,67 $(dollar) sign in identifiers in SQL Server 6.5 and 7, & (bitwise AND) operator in T-SQI.., (string concatenation character) operator in T-SQL,233 < (less than) operator in T-SQI.., 232!< (not less than) operator in T-SQL, 232 <= (less than or equal to) operator in T-SQL, 232 <> (not equal to) operator in T-SQI.., 232 = (equal) sign, using with stored procedures in SQL Server,224 =(equal to) operator in T-SQL, 232!=(not equal to) operator in T-SQI.., 232 > (greater than) operator in T-SQI.., 232!> (not greater than) operator in T-SQL, 232 >= (greater than or equal to) operator in T-SQL, 232? (question marks) in tables, sign in identifiers in SQL Server 6.5 and 7, using with T-SQL, 224 using with variable names in T-SQL, at) sign before SQL Server variable names, 236 caution against using with identifiers in SQL version 6.5, system variable in SQL Server, system variable in SQL Server, 239 A (bitwise exclusive OR) operator in T-SQL, 232 _(underscore) in identifiers in SQL Server 6.5 and 7, I (bitwise OR) operator in T-SQL, 232 A aaaaacharacters before primary keys in Access 2000 wizard, 91 before primary keys in Access 97 wizard, 79 Access,2 Admin user ID, 29 analyzing tables when migrating to SQL Server, Autonumber fields, 43 benefits ofprototyping applications, 25 clustered indexes, 44 compacting databases, 30 connecting SQL Server database to, 249, connecting to SQL Server database from, contrasting client/ server architecture to, 2 creating tables with fields related to other fields, 191 cross-tab queries, 48 Double data type, 44 hardware requirements, 31 lengths of Text fields and Memo fields, 43 Long Integer data type, 43 managing list and combo boxes on, managing tables, 8 Memo data type, 209 primary keys, 44 query process, 28 read-only forms, 49 record locking feature, 29 repairing databases, 30 role of unique indexes, 38 setting rules with Validation Rule property, 45 Single data type, 44 software requirements, 31 system.mdw me, 29 testing stored procedures, using cascading deletes with forms, 52 using ODBC tables, using steps to migrate to SQL Server, Access 2000, CurrentProject.Connection property, 318 Access 2000 wizard. See also Access 97 wizard, migration, upsizing wizards entries versus Access 97 wizard, 79 caution about upsizing data with, 96 creating new databases with, guidelines for use of, managing application changes with, migrating defaults with, 85 migrating indexes with, 85 migrating table relationships with, naming databases with, 81 upsizing options for, Access 97 wizard. See also Access 2000 wizard, migration, upsizing wizards entries creating new databases with, downloading, 50 guidelines for use of, migrating defaults with,

6 326 migrating table relationships with, migrating validation rules with, running upsizing reports with, 75 selecting devices with, selecting existing databases, 71 selecting existing or new databases, selecting tables with, upsizing data with, 96 upsizing options for, using to link SQL Server tables, 75 Access 97 wizard versus Access 2000 wizard, 79 Access database design, optimizing, Access databases linking ODBC tables into, 39 managing filtered data, 312 replicating data, Access functions in queries, caution regarding migration to SQL Server, 48 Access migration, relevance ofdts to, access options, defining with SQL version 7, 179 Access pass-through queries managing with DAO, using with SQL Server stored procedures, Access queries comparing to SQL Server stored procedures, 302 optimizing with parameters, Access relationship window, comparing to diagram database object in SQL version 7, 13 Access security groups, comparing to group/user database object in SQL Server 6.5, 12 Access SELECT queries, comparing to views in SQL Server,9 Access settings, optimizing for data transfers, 3~310 Access Validation Rule property, comparing to rule database object in SQL Server, 11 Access versus SQL Server, migration considerations, ActualSize property in DTS fields, 136 Add Network Library Configuration window in Enterprise Managerfor SQL version 7, Address ODBC connection setting, 287 administration and maintenance in Access versus SQL Server, 30 ADO (ActiveXData Objects), 282 comparing to OBDCDirect, 283 creating parameters for commands, events and asynchronous commands, managing connections with, manipulating data with, using Command objects with, using for coding against data, 318 ADO (ActiveXData Objects) wrappers, accessing data with,39-40 ADP (Access database project), 205,271, creating with Access 2000 wizard, 88 Input Parameters property, 278 managing connections, managing form data properties, Max Rec Button property, 278 Max Records property, 277 relationship to SQL Server Browser, 171 Resync property, 278 Server Filter property, 277, 278 Unique Table property, 278 using SQL Server objects, Advanced Properties screen in DTS Designer, Alias column in Manage Logins screen in SQL version 6.5, aliases providing for server in Enterprise Manager for SQL version 7, 18 using with login database objects, 12 aliasing logins in SQL version 6.5, 12 All TasksGenerate Scripts option in SQL version 7, AND operator in T-SQL, 232 ANSI (American National Standards Institute), SQL compliance with, 3-4 ANSI NUlL Default database property in SQL version 7,181 AnsiNPW ODBC connection setting, 287 application changes, managing with Access 2000 wizard,87-a9 ApplyFilter action in macros, analyzing when migrating from Access to SQL Server, 53 Apress Web site, finding information about SQL Server on, 23 arguments, defining in stored procedures (SQL Server), 223 AS keyword, using with stored procedures in SQL Server,225 asynchronous commands and ADO events, sign in identifiers in SQL Server 6.5 and 7, using with T-SQL, 224 using with variable names in T-SQL, 227 Attributes property in DTS fields, 136 authentication requirements for SQL Server and NT, 154 Auto Close database property option in SQL version 7,181 Auto Create Statistics database property option in SQL version 7, 181 Auto Gen. button in 'Ihmsformation Script Editor, Auto Shrink database property option in SQL version 7,181 Auto Update Statistics database property option in SQLversion 7,181 Autonumber fields in Access, type and capacity of, 43 B backslash (\) operator, 61 backup devices, managing in SQL version 6.5,

7 Backup Devices option for Enterprise Manager (SQL version 6.5), 16 backward compatibility, using rule database object for, 11 Before Update and After Update events, moving to SQL Server triggers, BEGIN TRANSACTION statement in SQL Server, 237 BE1WEEN operator in T-SQL, 232 binary data types, managingwithsqlversion 7, 211 Bind UDDTs command, accessing in SQL version 7, bit data type, limitation in SQL Server, 43 bitwise AND (&) operator in T-SQI bitwise exclusive OR (") operator in T-SQL, 232 bitwise OR (il operator in T-SQI Books Online feature, 23 bound controls, reducing data transfers with, BREAK keyword, using with WHILE flow construct in T-SQI..231 Browse button in Thmsformation Script Editor, bulk updates, performing with stored queries, c caching lookups in DTS Designer, cascading changes, 9 cascading features, role in migrating from Access to SQL Server, 46 cascading updates and deletes, 52 implementing with Access 2000 wizard, 86 implementing with Access 97 wizard, 7 4 CASE operator in T-SQI char data type guidelines for use of, length in SQL Server, 43 managing with SQL version 7, 208 check constraints defining with SQL version 6.5, using with Fast Load Feature in DTS Designer, 128 Client Network Utility, using to set up Enterprise Manager for SQL version 7, 18 client/ server architecture, SQL Server as, 1-3 client-side cursors, 28 client -side processing, reducing network traffic with, clients, definition of, 2 clustered indexes, 8-9, 44 in Access, 44 managing with SQL version 7, 213 CNU (Client Network Utility), using to select destination servers with DTS wizard, 107 code execution in T-SQL, 229 migrating to stored procedures, code behind forms, analyzing when migrating from Access to SQL Server, collections in DTS transformations, column mappings, viewing in DTS Designer, Column Mappings tab indtswizard, Column Order screen in DTS Designer, columns, selecting for binding in SQL version 6.5, 168 combo boxes on forms, managing with Access, Command objects, using with SQL Server, 299 commands running against databases in Enterprise Manager for SQL version 6.5, 17 running against servers asynchronously with AD0,40 running in ODBC, 269 COMMIT TRANSACTION statement in SQL Server, comp.databases.ms-access newsgroup, finding information about SQL Server in, 23 comp.databases.ms-sqlserver newsgroup, finding information about SQL Server in, 23 components of stored procedures in SQL Server, composite keys in Access databases, 8 Connect property for QueryDef object, 293 Connect Timeout SQWLEDB property, 297 Connection base object in ADO, connection information for SQL Server databases, Connection Properties screen in DTS Designer, Connection screen in SQL Server, 27 4 connections managing during migration from Access to SQL Server, in OLE DB data sources, 100 connections in DTS packages, flow and properties of, constraints, using with defaults in SQL Server, 45 constraints for tables, 9, 163 CONTINUE keyword, using with WHILE flow construct in T-SQI controls on forms, making performance improvements with, 50 cost as deterrent to migrating from Access to SQL Server, 35 of Access versus SQL Server applications, Count property for DTS collections, 136 Create anew Access Client/Server Application option in Access 2000 wizard, 87-B8 Create DTS Package for Replication option in DTS wizard, CRFATE PROCEDURE statement in SQL Server, CreateQueryDef method, 294 Creating and Maintaining Databases section of Books Online feature for SQL version 7,

8 328 cross-tab queries in Access, 48 currency data types, managing with SQL version 7, 210 CurrentProject.Connection property in Access 2000,318 cursors D support in Access and SQL Server, 28 using to navigate records in Transact-SQL, 54 DA SDK Development Kit, downloading, 40 DAO (Data Access Objects), managing Access pass-through queries with, managing local objects with, role in using ODBC to connect from Access to SQL Server, 39 TableDef objects, 290 DAT file extension in SQL version 6.5, 144 data filtering on servers, 308 manipulating with ADO, migrating with DTS, returning with views in SQL version 7, 216 temporary storage of, 7 transferring in Access versus SQL Server, using DTS wizard to transfer to destination tables, viewing in Enterprise Manager for SQL version 6.5, viewing in Enterprise Manager for SQL version 7,21-22 data access choosing technology for, managing with Up sizing wizards, methods, Data Access Components library, downloading to workwithado, Data link Properties dialog box in ADP, data objects, general considerations for migrating from Access to SQL Server, 55 data organization as deterrent to migrating from Access to SQL Server, 34 data organization of tables, analyzing when migrating from Access to SQL Server, 41 Data Source Connections in OLE DB, 100 Data Source SQLOLEDB property, 297 data sources, creating in SQL Server, 252 _Data suffix in SQL version 7 filenames, 177 data transfers controlling with DTS Designer, 125 reducing, 307 data transformation process, viewing in DTS Designer, Data Transformation Services option for Enterprise Manager (SQL version 7), data translation, using DTS wizard to create customized scripts for, data types analyzing in tables when migrating from Access to SQL Server, guidelines for selection of, translating with DTS wizard, 111 database components, 4 Database Developers Guide section of Books Online feature for SQL version 6.5, 23 database devices, defining with SQL version 6.5, 5, 150 deleting in SQL version 6.5, 147 determining size in SQL version 6.5, editing in SQL version 6.5, 146 naming in SQL version 6.5, 144 scheduling creation in SQL version 6.5, 145 setting defaults in SQL version 6.5, 144 specifying locations in SQL version 6.5, 144 Database Devices option for Enterprise Manager (SQL version 6.5), 16 database diagrams, managing with SQL version 7, database files, 5 database object names, effect of security on (SQL version 6.5), 172 database objects, 8-13 filtering in SQL version 6.5, 159 managing in SQL version 6.5, 23, 156, managing permissions with SQL version 7, managing with SQL version 7, 186 setting permission in SQL version 6.5, 160 DATABASE ODBC connection setting, 287 database options, configuring for SQL version 6.5, database permissions, setting in SQL version 7, 182 database properties, changing in SQL version 7, database security configuring permissions for SQL version 6.5, 153 improving with views in SQL version 7, 216 database size, specifying with Access 2000 wizard, 83 databases caution about making changes to, 7 creating from model system database, 7 creating in SQL version 7, creating with Access 2000 wizard, creating with Access 97 wizard, creating with SQL version 6.5, deleting from SQL version 6.5, 153 deleting from SQL version 7, 183 deleting with SQL version 6.5, 149 editing with SQL version 6.5, expanding size with SQL version 6.5, 151 managing with SQL version 6.5, naming in SQL version 7, 177 namingwithaccess 2000 wizard, 81 naming with Access 97 wizard, 70 naming with SQL version 6.5, restoring, 5

9 running commands against using Enterprise Manager for SQL version 6.5, 17 selecting with Access 2000 wizard, 83 selecting with Access 97 wizard, 71 selecting with DTS, spreading over multiple drives in SQL version 7, 179 using ADO for scaling to SQL Server, 318 using SQL Server Browser to link tables to, 171 databases and objects, viewing in Enterprise Manager for SQL version 7, 21 Databases option for Enterprise Manager in SQL version 6.5, 16, in SQL version 7, date data types, managing with SQL version 7, Date/lime fields, modifying before using the Upsize wizard for Access, DBO Use Only access option in SQL version 7, DDL (data definition language) statements creating temporary tables for T-SQL with, displaying in DTS wizard, 110 decimal data type, managing in SQL Server, 43, 210 DECLARE statement, using with variables in T-SQL,227 Default column in Manage Logins screen in SQL version 6.5, Default values, managing for use with Upsizing wizards,96 default values for parameters, avoiding in stored procedures (SQL Server), 225 defaults managing with SQL version 6.5, 169 managing with SQL version 7, 203 migrating with Access 2000 wizard, 85 upsizing with Access 97 wizard, 73 defaults database object, 11 defaults and rules, role in migrating from Access to SQL Server, 45 DefinedSize property in DTS fields, 136 DejaNews site, finding information about SQL Server,23 DELETE triggers, using with database relationships, 46 dependencies for objects, determining with SQL version 7, 187 Description ODBC connection setting, 287 Destination Screen in DTS wizard, 107 devices selecting with Access 2000 wizard, selecting with Access 97 wizard, diagram database object in SQL version 7, 13 Diagram Pane, using to design SQL statements in Enterprise Manager for SQL version 7, diagrams, managing with SQL version 7, directories, changing in SQL version 7, 177 documentation, role in migration planning, dollar($) sign in identifiers in SQL Server 6.5 and 7, double at sign before SQL Server variables, double at caution against using with identifiers in SQL version 6.5, 66 Double data type in Access, 44 double hash (##) sign, using with temporary tables in T-SQL, double pound{##) sign in identifiers in SQL Server 6.5 and7,67 DRI (database referential integrity) migrating table relationships with, using to migrate table relationships, DRIVER ODBC connection setting, 287 drivers for data sources, selecting with DTS wizard, 104 drivers for destination systems, selecting with DTS wizard, 107 Drop and Recreate Destination Thble option in DTS wizard, 110 DROP PROCEDURE call in SQL Server, 224 DSN (Data Source Name) configuring client options, connection information, 253 constants, 137 creating to connect to ODBC data sources, creating with Access 97 wizard, 71 creating with Register Database method, managing, selecting with Access 97 wizard, 69 server and database options, 254 DSN-less connections, creating, 288 DSN ODBC connection setting, 287 DTS Data Pump OLE DB service provider, DTS (Data 'Ihmsformation Services) accessing (SQL Server 7), 103 architecture of (SQL Server 7), benefits of using for Access migration (SQL Server7), introduction to (SQL Server 7), 99 packages, relevance to Access migration (SQL Server 7), scripting, using with Upsizing wizard, 138 DTS Designer accessing, accessing Workflow Properties, 129 Advanced Properties screen, cachinglookups, Connection Properties screen, controlling data transfer with, 125 creating transformations with,

10 330 customizing transformations with, defining precedence of packages with, designing packages with, 116 Enable Identity Insert option, 129 fetching rows with, 125 introduction to, 115 Lookups feature, opening windows, 116 terminating transformations with, Transformation Script Editor, Use Fast Load feature, 128 using Check Constraints with Fast Load feature, 128 using Keep Nulls with Fast Load feature, 128 using Table Lock with Fast Load feature in DTS Designer, viewing column mappings, viewing data transformation process, viewing mapping details for fields, viewing source data, viewing transformation details, 121 DTS Query Designer, 127 DTS transformations collections, result of creating lookups for, 135 return values, 137 DTSwizard Column Mappings tab, Column Order screen, connecting to local SQL Server installation with, 104 copying fields with, Create DTS Package for Replication option, creating tables with, 110 defining fields for translation with, 111 designing transfers with, displaying DDL statements, 110 Drop and Recreate Destination Table option, 110 Enable Identity Insert option, managing nchar data type with, 111 managing nvarchar data type with, 111 migrating tables with, naming convention for tables, 108 Run Immediately option for packages, running, Save DTS Package screen, saving packages, Schedule DTS Package for Later Execution option, security settings for, 105 selecting databases with, , 107 selecting drivers for destination systems with, 107 selecting Source data drivers for, 104 starting from command line, 103 Transform column beside tables, 109 Transformations tab, , translating data types with, 111 using to assign owner passwords, using to assign user passwords, using to change servers for migrating data to, 107 using to save packages to ffies, 113 using to save packages to Microsoft Repository, 113 using to save packages to SQL Server, 113 using to transform data to destination tables, DTSDestination collection, DTSLookupscollection,l DTSSource collection, DTSTransformStat_SkipFetch constant, DTSTransformStat_Skiplnsert constant, dump devices in SQL version 6.5, 142 E ELSE statement, using with CASE operator in T-SQL, 234 Enable Identity Insert option in DTS Designer, 129 indtswizard, ENCRYPTION statement, using with stored procedures in SQL Server, 225 Enterprise Manager DTS Designer tool, 115 locating, running DTS wizard from, 103 and SQL version 6.5, and SQL version 7, 18-23, 176 equal (=) sign, using with stored procedures in SQL Server,224 equal to (=) operator in T-SQL, 232 error handling in SQL Server, , 239 error messages, SQL Server locks, event-driven code behind forms, analyzing when migrating from Access to SQLServer, Exit Function command in Access, 239 Exit Sub command in Access, 239 Export wizard, usingwithdtswizard, 103,107 extended stored procedures in SQL Server, 222 F failover servers, using with ODBC connections, 255 field properties in DTS transformations, fields, 8 adding to indexes in SQL version 6.5, 167 copyingwithdtswizard, defining for translation with DTS wizard, 111 reducing size with non-unicode character data type, viewing mapping details in DTS Designer, File Connections OLE DB, 100 File DSNs, 258 creating for ODBC connections, file groups, defining in SQL version 7, 178

11 files creating and locating them in SQL version 7, resizing in SQL version 7, 178 using DTS wizard to save packages to, 113 filter-by-form feature, reducing data transfers with, 308 finding information about SQL Server, FindRecord action in macros, analyzing when migrating from Access to SQL Server, 53 float data type in SQL Server, , 210 floating-point number types, managing with SQL version 7, 210 flow control, managing with T-SQL, 22~235 FOR REPUCATION statement, using with stored procedures in SQL Server, 225 foreign keys for tables, defining with SQL version 6.5, form data properties in ADP, forms analyzing when migrating from Access to SQL Server, 4~52 guidelines for documentation as part of migration planning, 57 using controls to improve performance, 50 forward-only records, advantages of, 313 functionality, sharing in SQL version 6.5, functions in queries, caution regarding migration from Access to SQL Server, 48 G Generate SQL Scripts, sharing functionality in SQL Server,162 GOTO statement in T-SQL, 231 greater than (>) operator in T-SQL, 232 greater than or equal to (>=) operator in T-SQI Grid Pane, using to design SQL statements in Enterprise Manager for SQL version 7, 21 Group column in Manage Logins screen in SQL version 6.5, groups adding in SQL version 6.5, 158 modifying in SQL version 6.5, 158 Groups/Users database objects, managing in SQL version 6.5, 12, I identifiers, naming conventions in SQL Server 6.5 and 7, IDs and passwords, saving with Access 2000 wizard,88 IE.. ELSE flow construct in T-SQI lmportwizard, usingwithdtswizard,103,107 IN operator in T-SQI index covering in Access, 312 indexes,8 designing for optimization in SQL Server, managing with SQL version 6.5, managing with SQLversion 7, , migrating with Access 2000 wizard, 85 migrating with Access 97 wizard, 72 migrating with Upsizing wizards, and ODBC, 214 role in migrating from Access to SQL Server, saving in SQL version 7, 195 information, finding in Enterprise Manager for SQL version 7, INFORMATION_SCHEMAfilename in ODBC, 260 Initial Catalog SQWLEDB property, 297 Initial File Name SQWLEDB property, 297 Input Parameters property inadp, 278 int data type in SQL Server, capacity of, 43, , 209 Integrated (NT) authentication, 6 Integrated Security SQWLEDB property, 297 ISQL/w J modifying data in using Enterprise Manager for SQL version 6.5, opening in Enterprise Manager for SQL version 6.5, Jet Engine bypassing with ODBC when connecting from Access to SQL Server, 39 management of queries against linked tables, K role in Access query process, 28 role in using ODBC to connect from Access to SQL Server, 38 Keep Nulls feature, using with use Fast Load feature in DTS Designer, 128 keys in tables, managing with SQL version 6.5, 163 keyword limitations in creating views in SQL version 7,217 L Language ODBC connection setting, 287 LDF extension, 5 less than(<) operator in T-SQL, 232 less than or equal to (<=) operator in T-SQL, 232 licenses, purchasing for Microsoft Office Developer Edition,31 UKE operator in T-SQI Link SQL Server Tables to Existing Application option in Access 2000 wizard, 87-B8 331

12 332 link Thbles command, attaching tables or views with (DA0),286 link Thbles dialog box in ODBC, 25~260 linked DTS package example, linking objects with ODBC, list boxes on forms, managing with Access, local objects, managing with DAO, _local tables, 71, 75 locks definition of, 60 determining amount needed for tables, reconfiguring, 63 viewing, 63 log files specifying size with Access 2000 wizard, 83 in SQL version 7, 5 Log Messages property in ODBC, 268 log problems, avoiding during migration, 70, 82 _Log suffix in filenames in SQL version 7, 179 logging, specifying for ODBC connections, 256 login database object, 12 login properties, setting for SQL version 7, logins creating in SQL version 6.5, creating or editing with SQL version 7, deleting from SQL version 6.5, 156 deleting from SQL version 7, 186 editing and deleting in SQL version 6.5, 156 editing or creating with SQL version 7, managing with SQL version 6.5, managing with SQLversion 7, Logins option for Enterprise Manager (SQL version 6.5), 16 Long Integer data type in Access, 43 lookup queries result of creating for DTS transformations, 135 using parameters with, 128 Lookups feature in DTS Designer, M macros analyzing when migrating from Access to SQL Server, guidelines for documentation as part of migration planning, 57 migrating to stored procedures, maintenance and administration as reason to migrate from Access to SQL Server, 33 Management option for Enterprise Manager (SQL version 7), 1~20 master system database, 6--8 Max Rec Button property inadp, 278 Max Records property inadp, 277 Max Records property in ODBC, 268 MaxRecords property for QueryDef object, 293 MDAC (Microsoft Data Access Components), downloading, 40 mdac_typ.exe file, downloading to work with ADO, 296 MDF extension, 5, 177 Memo fields, length in Access, 43 Microsoft Access. See Access Microsoft Data Access Components Library, downloading to work with ADO, Microsoft Data link Connections in OLE DB, 100 Microsoft Data Shaping Service, using withadp connections, 299 Microsoft Knowledge Base, finding information about SQL Server, 23 Microsoft news server, finding information about SQL Server, 23 Microsoft Office Developer Edition, cost of, 31 Microsoft Repository, using DTS wizard to save packages to, 113 Microsoft SQL Server. See SQL Server Microsoft SQL Server Database wizard dialog box, migration considerations, 25, 35. See also Access 2000 wizard, Access 97 wizard, upsizing entries migration from Access to SQL Server planning data access for, reasons against, reasons for, timing, 26 migration methods, 37 migration plans, role of documentation, migration tips, mirroring database devices in SQL version 6.5, 145 mixed authentication mode, 5-6 MMC (Microsoft Management Console) administration of SQL version 7 through, 176 role in Enterprise Manager for SQL version 7, 18 model system database, 6--8 modules analyzing when migrating from Access to SQL Server, guidelines for documentation as part of migration planning, 57 msado15.dll, 296 msdb system database, 6--8 MSDE (Microsoft Data Engine), 1 msnews.microsoft.com news server, finding information about SQL Server, 23 MSysConffable configuration, 292 multi-user access as reason to migrate from Access to SQL Server, multi-user constraints in Access versus SQL Server, N 2~30 Name property in DTS fields, 136 nchar data type managing with DTS wizard, 111 managing with SQL version 7, 208 NDF extension, 5

13 Net-libraries role in setting up Enterprise Manager for SQL version 6.5, selecting for Enterprise Manager SQL version 7, Network Address SQLOLEDB property, 297 network traffic as reason to migrate from Access to SQL Server, 33 reducing with client -side processing, newsgroups, finding information about SQL Server, 23 No Application Changes option in Access 2000 wizard,87 non-unicode character data type, reducing size of fields with, not equal to ( <>) operator in T-SQL, 232 not equal to (!=) operator in T-SQL, 232 not greater than (!>) operator in T-SQL, 232 not less than (k) operator in T-SQL, 232 NOT operator in T-SQL, 232 NT authentication, 5-6, 154 ntextdata type, managing with SQL version 7, 208 Null values, managing with T-SQL, 228 nullability of user-defined data type (UDDT) database objects, 11 nullable char fields, managing with SQL version 7, 209 Nulls in fields, managing with Upsizing wizards, 94 numeric data type in SQL Server, 43 NumericScale property in DTS fields, 136 nvarchar data type 0 managing with DTS wizard, 111 managing with SQL version 7, 208 object dependencies, sharing functionality in SQL Server, object names, effect of security on (SQL version 6.5), 172 objects components of, 172 determining dependencies with SQL version 7, 187 general considerations for migrating from Access to SQL Server, 55 re-creating with SQL version 7, updating definitions in Access, ODBC Data Sources, connecting to, 258 ODBC-linked tables, managing with DAO, ODBC (Open Database Connectivity) connecting from Access to SQL Server with, connection settings, as data provider, 2-3 and indexes, 214 Log Messages property, 268 Max Records property, modifying timeout settings before using the Upsizing wizard for Access, Return Records property, 268 Timeout property, 268 using to connect to SQL Server, ODBC tables, using in Access, 258, ODBC Registry settings, 264 ODBC Timeout property, 268 ODBCDirect, bypassing Jet Engine parsing functions with, 39 comparing to ADO, 283 ODS (Open Data Services) layer, role in client/server architecture, 3 off-table indexes in SQL Server, 44 Office Update Web site, checking current Access version on, 60 OLE DB accessing data with, as data provider, 2-3 relationship ofdts to, 99 OLE DB connections, 100 On Completion steps in DTS, 101 On Error GOTO statement in VBA, 236 On Failure steps in DTS, 101 On Success steps in DTS, 101 Open Data Services (ODS) layer, role in client/ server architecture, 3 Open Query macro analyzing when migrating from Access to SQL Server, 53 migrating to stored procedures, 242 Open Table action in macros, analyzing when migrating from Access to SQL Server, 53 operators in T-SQL, OR operator in T-SQL, 232 Origina!Value property in DTS fields, 136 OUTPUT keyword role in Command objects in SQL Server, 299 using with stored procedures in SQL Server, 224 owner password, using to assign packages in DTS p wizard,ll3-ll4 packages, designing with DTS Designer, 116 savingindtswizard, using DTS Designer to define precedence for, padding indexes in SQL version 7, parameters adding default values for (SQL Server), 224 constructing in stored procedures (SQL Server), 224 creating for commands in ADO, limitations in SQL version 6.5, 225 optimizing Access queries with,

14 in stored procedures (SQL Server), using with lookup queries, 128 Parse button in Thmsformation Script Editor, pass-through queries, 49 managing with DAO, role in using ODBC to connect from Access to SQL Server, 39 in SQL Server, using with Access and SQL Server stored procedures, password caching, preventing in SQL Server, Password SQWLEDB property, 297 passwords, managing for use with Upsizing wizards, 97 passwords and IDs, saving with Access 2000 wizard, 88 permissions configuring for SQL version 6.5, 153 setting for groups and users in SQL version 6.5, setting in SQL version 7, 182 sharing functionality in SQL Server, 161 Permit column in Manage Logins screen in SQL version 6.5, port1433 role in setting up Enterprise Manager for SQL version 7, 19 using with TCP /IP Sockets and Enterprise Managerfor SQL version 6.5, 14 pound sign (#)in identifiers in SQL Server 6.5 and 7, precedence defining with DTS Designer, using with relationships, 131 precision numeric data types, managing with SQL version 7, 209 Precision property in DTS fields, 136 primary data files in SQL version 7, 5 primary keys in Access, 44 as clustered indexes in SQL version 7, 213 defining for with SQL version 6.5, 163 migrating with Access 2000 wizard, 91 migrating with Access 97 wizard, 79 role in Access databases, 8 procedures, grouping in SQL Server, projects, creatingwithadp, properties in DTS transformations, public group, managing in SQL version 6.5, PWD ODBC connection setting, 287 Q queries analyzing when migrating from Access to SQL Server, changing properties of, 294 enhancing security with, 314 guidelines for documentation as part of migration planning, 56 migrating to stored procedures, translating to SQL Server views with Access 2000 wizard, 88 Query Analyzer, finding information about, 63 QueryDef object, properties of, 293 QueryTimeout setting, modifying before using the Upsize wizard for Access, question marks ('?) in tables, 215 Quotedld OCBC connection setting, 287 R read-only forms and pass-through queries in Access, 49 Read Only option in SQL version 7, 179 read-only recordsets, 54 real data type, managing with SQL version 7, 210 RECOMPILE statement, using with stored procedures in SQL Server, 225 record locking, 29 record sizes, determining maximum for SQL version 6.5,61 records, setting maximum inadp, 276 Recordset property in DTS fields, 136 recordsets comparing between Access and SQL Server, creating on the fly with ADO, 40 managing with T-SQL, 228 optimizing locking of data, 313 role in using ODBC to connect from Access to SQL Server, Recursive Triggers database property in SQL version 7,181 Register Server dialog box for Enterprise Manager (SQL version 6.5), 15 RegisterDatabase method in Access, relationships, 9, creating and editing with SQL version 7, managing for use with Upsizing wizards, 96 using precedence with, 131 replicating databases in Access versus SQL Server, 30-31,34 reports analyzing when migrating from Access to SQL Server, 52 guidelines for documentation as part of migration planning, 57 response issues as reason to migrate from Access to SQL Server, 33 restoring databases, 5 Results Pane, using to design SQL statements in Enterprise Manager for SQL version 7, 22 Resync Command propertyinadp, RETURN command in T-SQL,

15 Returns Records property in queries, 268 return values, assigning to stored procedures in SQL Server,223 ReturnsRecords property for QueryDef object, 293 rights setting for users in SQL version 6.5, 153 setting for groups in SQL version 6.5, 158 setting for roles in SQL version 7, 182 setting for users in SQL version 7, 182 role database object in SQL version 7, roles managing with SQL version 7, setting rights in SQL version 7, 182 ROllBACK TRANSACTION statement in SQL Server, rollbacks, SQL Server support for, 33 rows,8 fetching with DTS Designer, 125 returning specified number of using Enterprise Manager for SQL version 7, rule database object, using with user-defined data type (UDDT) database object, 11 rules binding to UDDTs in SQL version 6.5, 168 managing with SQL version 6.5, managing with SQL version 7, rules and defaults, role in migrating from Access to SQL Server, 45 Run a wizard command, using with DTS wizard, 103 run command, issuing in ISQL/wwindows using Enterprise Manager for SQL version 6.5, Run Immediately option for packages in DTS wizard, RunSQL macro s analyzing when migrating from Access to SQL Server, 53 migrating to stored procedures, 242 Save DTS Package screen in DTS wizard, Save Password option in Link Thbles dialog box of ODBC,260 SAVE TRANSACTION statement in SQL Server, 238 Schedule DTS Package for Later Execution option in DTS wizard, scripts customizing with DTS wizard, running in SQL Query Analyzer, 189 security, enhancing with queries, 314 security considerations for SQL Server, , security model, implementation in Access versus SQL Server,29 security modes, 5-6 Security option for Enterprise Manager (SQL version 7), security permissions configuring for SQL version 6.5, 153 configuring for SQL version 7, security settings, selecting for DTS wizard, 105 seed values, setting for identity columns in SQL Server,43 Select Data Source dialog box in ODBC, Select Into/Bulk Copy database property in SQL version 7, 181 SELECT statement, using with variables in T-SQL, SELECT queries in Access, comparing to views in SQL Server,9 Select QueryDefProperties, 293 Select Unique Record Identifier dialog box in ODBC,261 Select unique Record Identifier screen, 289 Server Filter by Form property in ADP, 278 Server Filter property in ADP, 277 server groups, adding servers to in Enterprise ManagerforSQLversion6.5, server locks configuration options in SQL version 6.5, SERVER ODBC connection setting, 287 server response time, improving with views in SQL version 7, 219 server-side cursors, 28 servers adding to Enterprise Manager for SQL version 6.5,14-15 choosing as destination for migrating data with DTS wizard, 107 definition of, 2 filtering data on, 308 registering with Enterprise Manager for SQL version 6.5, 15 registering with Enterprise Manager for SQL version 7, 19 running commands against asynchronously withad0,40 shared functionality for database objects in SQL version 7, sharing functionality in SQL version 6.5, Shrink button in SQL version 6.5, 152 Single data type in Access, 44 Single User option in SQL version 7, 179 size considerations when migrating from Access to SQL Server, 32 constraints when migrating from Access to SQL Server, 27 as deterrent to migrating from Access to SQL Server,34 STTIIllldatetime data type, managing with SQL version 7, snapshots inadp,

16 336 Source data drivers, selecting with DTS wizard, 104 source of data, viewing in DTS Designer, sp_help system stored procedure, 10 SQL 89 and 92 standards, 4 SQL Client Configuration Utility, using with Enterprise Managerfor SQL version 6.5, SQL database design, optimizing, SQL Enterprise Manager. See Enterprise Manager SQLExecutive, 7,16 SQLfile extension, 162 SQL logins. See logins SQL Mail option for Enterprise Manager for SQL version 6.5, 16 SQL pane, using to design SQL statements in Enterprise Manager for SQL version 7, 21 SQL pass-through queries, role in using ODBC to connect from Access to SQL Server, 39 SQL property for QueryDef object, 293 SQL Query Analyzer, running scripts with, 189 SQL Query window results in Enterprise Manager for SQL version 6.5, 17 SQLServer adding default values for parameters, 224 analyzing tables when migrating from Access, authentication requirements for, 154 avoiding default values for parameters, 225 clustering indexes, 44 coding stored procedures, 226 components of stored procedures, confonning data to data rules for applications, 44 CREATE PROCEDURE statement, 224 decimal data type, 43 DROP PROCEDURE call, 224 extended stored procedures, 222 float data type, grouping procedures, hardware requirements, 31 improving precision of data, int data type, 43 length of char data type, 43 length of varchar data type, 43 lengths of varchar and text data types, 43 managing maintenance commands, 7 naming conventions for, numeric data type, 43 off-table indexes, 44 preventing password caching, range for datetime data, 64 record locking feature, 29 and recordsets, running commands with (ADO), sa default admin user, security considerations for, sharing functionality of Generate SQL Scripts feature, 162 sharing functionality of object dependencies, sharing functionality of permissions, 161 software requirements, 31 starting and stopping, 63 stored procedure syntax, system stored procedures, 222 user-defined stored procedures, 222 using AS keyword with, 225 using Command objects with, 299 using constraints with defaults, 45 using DTS wizard to save packages to, 113 using ENCRYPTION statement with, 225 using FOR REPliCATION statement with, 225 using OUTPUT keyword with, 224 using RECOMPILE statement with, 225 using steps to migrate from Access, SQL Server 6.5, 1 adding fields to indexes, 167 adding groups, 158 Alias column in Manage Logins screen in SQL Server 6.5, binding rules to UDDTs in SQL Server 6.5, 168 configuring database options for, creating database devices, creating databases with, creatinglogins, Default column in Manage Logins screen, defining check constraints with, defining database devices for, 150 defining foreign keys for tables with, defining primary keys for tables with, 163 defining table check constraints with, defining unique indexes with, 165 deleting database devices, 14 7 deleting databases from, 153 deleting databases with, 149 deleting logins from, 156 determining maximum record sizes for, 61 determining size of database devices, dump devices, 142 editing and deleting logins, 156 editing database devices, 146 editing databases with, editing unique constraints with, 165 effect of security on object names, 172 expanding size of database with, 151 filtering database objects, 159 Group column in Manage Logins screen in SQL Server 6.5, groups/users database object, 12 managing backup devices, managing constraints in tables with, 163 managing database devices, managing database objects, managing databases with, managing defaults with, 169 managing Groups/Users database objects, managingindexeswith,

17 managing keys in tables with, 163 managing logins with, managing public group, managing rules with, managing stored procedures with, 168 managing tables with, managing triggers with, managing UDDT with, 170 managing user-defined data types with, 170 managing views with, 168 maximum size of single database, 27 Microsoft compliance with SQL 92 standard, 4 mirroring database devices, 145 modifying groups, 158 naming database devices, 144 naming databases with, parameter limitations, 225 Permit column in Manage Logins screen, scheduling creation of database devices, 145 security considerations for, selecting columns for binding, 168 selecting devices for Access 97 wizard, 69 selecting devices with Access 2000 wizard, 8I-a2 server locks configuration options, setting defaults for database devices, 144 setting permissions for database objects, setting rights for groups, 158 setting rights for users, 158 sharing functionality, 161~ 163 Shrink button, 152 specifying locations of database devices, 144 SQL Server authentication, 5-6 truncating transaction logs, 152 unbinding items, 168 use and organization of database files, 5 users item, 12 using Enterprise Manager, SQL Server 6.5locks, configuring before using the Upsizing wizard for Access, SQL Server 6.5 Page Size, 61 SQLServer7 accessing Bind UDDTs command, accessing wizards, 177 ANSI NULL Default database property, 181 Auto Close database property option, 181 Auto Create Statistics database property option, 181 Auto Shrink database property option, 181 Auto Update Statistics database property, 181 benefits in SQL Server 7, changing database properties, changing directories, 177 configuring security permissions for, configuring transaction logs, 179 creating and locating files, creating databases with, creating views, _Data suffix, 177 database properties for, DBO Use Only access option, 179 defining access options with, defining file groups, 178 deleting databases from, 183 deleting logins from, 186 determining dependencies for objects with, 187 diagram database object, 13 editing or creating logins with, editing relationships between tables with, 191 features, I Generate Scripts option, indexing, introduction to DTS for, 99 keyword limitations for creating views, 217 _Log suffix in filenames in SQL Server 7, 177 managing clustered indexes, 213 managing database diagrams with, managing database objects with, 186 managing defaults with, 203 managing diagrams with, managingindexeswith, managingloginswith,l managing permissions for database objects with, managing roles with, managing rules with, managing stored procedures with, managing tables with, managing triggers with, managing user-defined data types with, managing users with, managing views with, maximum size of single database, 27 Microsoft compliance with SQL 92 standard, 4 naming databases with, 177 padding indexes, re-creating objects with, Read Only option, 179 Recursive Thiggers database property, 181 removing tables from diagrams, 191 resizing files, 178 role database object, role of SQL Server Engine, 3 saving indexes, 195 Select Into/Bulk Copy database property, 181 selecting tables from databases, 196 setting database permissions, 182 setting login properties for, setting rights for roles, 182 setting rights for users, 182 sharing functionality for database objects with, Single User option, 179 spreading databases over multiple drives, 179 Tom Page Detection database property, 181 Thuncate Log on Checkpoint database property,

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 1. Introduction to SQL Server Panayiotis Andreou

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 1. Introduction to SQL Server Panayiotis Andreou Department of Computer Science University of Cyprus EPL342 Databases Lab 1 Introduction to SQL Server 2008 Panayiotis Andreou http://www.cs.ucy.ac.cy/courses/epl342 1-1 Before We Begin Start the SQL Server

More information

DTS. The SQL Server 2000 client installation adds the necessary components for creating DTS packages. You can save your DTS packages to:

DTS. The SQL Server 2000 client installation adds the necessary components for creating DTS packages. You can save your DTS packages to: 11 DTS Data Transformation Services (DTS) is the most versatile tool included with SQL Server 2000. Most SQL Server professionals are first exposed to DTS via the DTS Import and Export Wizard; however,

More information

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p.

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. Acknowledgments p. xxiii Introduction p. xxv Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. 8 Transact-SQL p. 9 SQL

More information

From Access to SQL Server

From Access to SQL Server IURQWIP3DJHL7XHVGD\$XJXVW30 From Access to SQL Server RUSSELL SINCLAIR IURQWIP3DJHLLL7XHVGD\$XJXVW30 Contents at a Glance Introduction... xi Chapter 1 What Every Access Programmer Needs to Know about SQL

More information

Code Centric: T-SQL Programming with Stored Procedures and Triggers

Code Centric: T-SQL Programming with Stored Procedures and Triggers Apress Books for Professionals by Professionals Sample Chapter: "Data Types" Code Centric: T-SQL Programming with Stored Procedures and Triggers by Garth Wells ISBN # 1-893115-83-6 Copyright 2000 Garth

More information

How to Migrate Microsoft SQL Server Connections from the OLE DB to the ODBC Provider Type

How to Migrate Microsoft SQL Server Connections from the OLE DB to the ODBC Provider Type How to Migrate Microsoft SQL Server Connections from the OLE DB to the ODBC Provider Type Copyright Informatica LLC, 2017. Informatica and the Informatica logo are trademarks or registered trademarks of

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Information Systems Engineering. SQL Structured Query Language DDL Data Definition (sub)language

Information Systems Engineering. SQL Structured Query Language DDL Data Definition (sub)language Information Systems Engineering SQL Structured Query Language DDL Data Definition (sub)language 1 SQL Standard Language for the Definition, Querying and Manipulation of Relational Databases on DBMSs Its

More information

ODBC Client Driver PTC Inc. All Rights Reserved.

ODBC Client Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 4 External Dependencies 4 Setup 5 Channel Properties General 5 Channel Properties Write Optimizations 6 Channel Properties

More information

Ebook : Overview of application development. All code from the application series books listed at:

Ebook : Overview of application development. All code from the application series books listed at: Ebook : Overview of application development. All code from the application series books listed at: http://www.vkinfotek.com with permission. Publishers: VK Publishers Established: 2001 Type of books: Develop

More information

Index. NOTE: Boldface numbers indicate illustrations or code listing; t indicates a table. 341

Index. NOTE: Boldface numbers indicate illustrations or code listing; t indicates a table. 341 A access paths, 31 optimizing SQL and, 135, 135 access types, restricting SQL statements, JDBC setup and, 36-37, 37 accessing iseries data from a PC, 280-287, 280 accumulate running totals, 192-197, 193,

More information

IBM. Database Database overview. IBM i 7.1

IBM. Database Database overview. IBM i 7.1 IBM IBM i Database Database overview 7.1 IBM IBM i Database Database overview 7.1 Note Before using this information and the product it supports, read the information in Notices, on page 39. This edition

More information

Creating databases using SQL Server Management Studio Express

Creating databases using SQL Server Management Studio Express Creating databases using SQL Server Management Studio Express With the release of SQL Server 2005 Express Edition, TI students and professionals began to have an efficient, professional and cheap solution

More information

Acknowledgments Introduction. Chapter 1: Introduction to Access 2007 VBA 1. The Visual Basic Editor 18. Testing Phase 24

Acknowledgments Introduction. Chapter 1: Introduction to Access 2007 VBA 1. The Visual Basic Editor 18. Testing Phase 24 Acknowledgments Introduction Chapter 1: Introduction to Access 2007 VBA 1 What Is Access 2007 VBA? 1 What s New in Access 2007 VBA? 2 Access 2007 VBA Programming 101 3 Requirements-Gathering Phase 3 Design

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

More information

Exam Preparation Planning p. 11 Introduction p. 16 Developing a Security Strategy for Microsoft SQL Server 7 p. 17 SQL Server Authentication Methods

Exam Preparation Planning p. 11 Introduction p. 16 Developing a Security Strategy for Microsoft SQL Server 7 p. 17 SQL Server Authentication Methods Exam Preparation Planning p. 11 Introduction p. 16 Developing a Security Strategy for Microsoft SQL Server 7 p. 17 SQL Server Authentication Methods p. 18 Planning the Use of Windows NT Groups for Security

More information

Basis Data Terapan. Yoannita

Basis Data Terapan. Yoannita Basis Data Terapan Yoannita SQL Server Data Types Character strings: Data type Description Storage char(n) varchar(n) varchar(max) text Fixed-length character string. Maximum 8,000 characters Variable-length

More information

TopView SQL Configuration

TopView SQL Configuration TopView SQL Configuration Copyright 2013 EXELE Information Systems, Inc. EXELE Information Systems (585) 385-9740 Web: http://www.exele.com Support: support@exele.com Sales: sales@exele.com Table of Contents

More information

Get Table Schema In Sql Server 2005 Modify. Column Datatype >>>CLICK HERE<<<

Get Table Schema In Sql Server 2005 Modify. Column Datatype >>>CLICK HERE<<< Get Table Schema In Sql Server 2005 Modify Column Datatype Applies To: SQL Server 2014, SQL Server 2016 Preview Specifies the properties of a column that are added to a table by using ALTER TABLE. Is the

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

7. Run the TRAVERSE Data Migration Utility from TRAVERSE 10.2 into TRAVERSE 10.5.

7. Run the TRAVERSE Data Migration Utility from TRAVERSE 10.2 into TRAVERSE 10.5. Overview Use the TRAVERSE Data Migration Utility to convert and append OSAS 6.1x, 6.5x or 7.0x data to TRAVERSE data. Follow these steps to import OSAS 6.1x, 6.5x or 7.0x data into TRAVERSE: 1. Make sure

More information

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS 1 INTRODUCTION TO EASIK EASIK is a Java based development tool for database schemas based on EA sketches. EASIK allows graphical modeling of EA sketches and views. Sketches and their views can be converted

More information

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 2

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 2 Department of Computer Science University of Cyprus EPL342 Databases Lab 2 ER Modeling (Entities) in DDS Lite & Conceptual Modeling in SQL Server 2008 Panayiotis Andreou http://www.cs.ucy.ac.cy/courses/epl342

More information

BaanBIS Decision Manager 2.0. Modeler User's Guide

BaanBIS Decision Manager 2.0. Modeler User's Guide BaanBIS Decision Manager 2.0 A publication of: Baan Development B.V. P.O.Box 143 3770 AC Barneveld The Netherlands Printed in the Netherlands Baan Development B.V. 2001. All rights reserved. The information

More information

IBM i Version 7.2. Database Database overview IBM

IBM i Version 7.2. Database Database overview IBM IBM i Version 7.2 Database Database overview IBM IBM i Version 7.2 Database Database overview IBM Note Before using this information and the product it supports, read the information in Notices on page

More information

EasyLobby Database Setup EasyLobby Family of Products Version 10.0

EasyLobby Database Setup EasyLobby Family of Products Version 10.0 EasyLobby Database Setup EasyLobby Family of Products Version 10.0 Introduction This document describes how to set up the EasyLobby 10.0 database on Microsoft SQL Server or Oracle, how to setup an ODBC

More information

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100274DEC06200274 Paper Code : MCA-207 Subject: Front End Design Tools Time: 3 Hours

More information

MOBILE DATABASE VIEWER PLUS USER GUIDE

MOBILE DATABASE VIEWER PLUS USER GUIDE MOBILE DATABASE VIEWER PLUS USER GUIDE PRODUCT VERSION: 4.0 Mobile Database Viewer Plus Page 1 CONTENTS 1 INTRODUCTION...5 1.1 FEATURES...5 2 INSTALLATION...6 2.1 DESKTOP INSTALLATION...6 2.2 DEVICE INSTALLATION...6

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

Microsoft SQL Server - Concepts 2 005

Microsoft SQL Server - Concepts 2 005 1 Taught by: Aiman Mobarak Elkhalifa SQL Server Overview SQL Server 2 Overview 2 Taught by: Aiman Mobarak Elkhalifa Microsoft SQL Server 2 is a database platform for large-scale Online Transaction Processing

More information

Oracle SQL Developer. Supplementary Information for Microsoft SQL Server and Sybase Adaptive Server Migrations Release 2.

Oracle SQL Developer. Supplementary Information for Microsoft SQL Server and Sybase Adaptive Server Migrations Release 2. Oracle SQL Developer Supplementary Information for Microsoft SQL Server and Sybase Adaptive Server Migrations Release 2.1 E15226-01 December 2009 This document contains information for migrating from Microsoft

More information

Course Topics. Microsoft SQL Server. Dr. Shohreh Ajoudanian. 01 Installing MSSQL Server Data types

Course Topics. Microsoft SQL Server. Dr. Shohreh Ajoudanian. 01 Installing MSSQL Server Data types Dr. Shohreh Ajoudanian Course Topics Microsoft SQL Server 01 Installing MSSQL Server 2008 03 Creating a database 05 Querying Tables with SELECT 07 Using Set Operators 02 Data types 04 Creating a table,

More information

vfire Server Console Guide Version 1.5

vfire Server Console Guide Version 1.5 vfire Server Console Guide Table of Contents Version Details 4 Copyright 4 About this guide 6 Intended Audience 6 Standards and Conventions 6 Introduction 7 Accessing the Server Console 8 Creating a System

More information

Lab 4: Tables and Constraints

Lab 4: Tables and Constraints Lab : Tables and Constraints Objective You have had a brief introduction to tables and how to create them, but we want to have a more in-depth look at what goes into creating a table, making good choices

More information

WhatsUp Gold 2016 Installation and Configuration Guide

WhatsUp Gold 2016 Installation and Configuration Guide WhatsUp Gold 2016 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup 1 Installation Overview 1 Overview 1 Security considerations 2 Standard WhatsUp

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

Constraints. Primary Key Foreign Key General table constraints Domain constraints Assertions Triggers. John Edgar 2

Constraints. Primary Key Foreign Key General table constraints Domain constraints Assertions Triggers. John Edgar 2 CMPT 354 Constraints Primary Key Foreign Key General table constraints Domain constraints Assertions Triggers John Edgar 2 firstname type balance city customerid lastname accnumber rate branchname phone

More information

Creating Tables, Defining Constraints. Rose-Hulman Institute of Technology Curt Clifton

Creating Tables, Defining Constraints. Rose-Hulman Institute of Technology Curt Clifton Creating Tables, Defining Constraints Rose-Hulman Institute of Technology Curt Clifton Outline Data Types Creating and Altering Tables Constraints Primary and Foreign Key Constraints Row and Tuple Checks

More information

DataLogger PTC Inc. All Rights Reserved.

DataLogger PTC Inc. All Rights Reserved. 2018 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 5 Overview 6 Initial Setup Considerations 6 System Requirements 7 External Dependencies 7 Supported Data Types 8 SQL Authentication

More information

GridDB Advanced Edition SQL reference

GridDB Advanced Edition SQL reference GMA022C1 GridDB Advanced Edition SQL reference Toshiba Solutions Corporation 2016 All Rights Reserved. Introduction This manual describes how to write a SQL command in the GridDB Advanced Edition. Please

More information

Documentation Accessibility. Access to Oracle Support. Supported Browsers

Documentation Accessibility. Access to Oracle Support. Supported Browsers Oracle Cloud Known Issues for Oracle Business Intelligence Cloud Service E37404-12 March 2018 Known Issues Learn about the issues you may encounter when using Oracle Business Intelligence Cloud Service

More information

520 Cant empty Clipboard 521 Cant open Clipboard Expression not valid:.

520 Cant empty Clipboard 521 Cant open Clipboard Expression not valid:. The Following is a Programmers list of VB errors. Although this will not necessarily resolve your issues, it will give support an understanding as to where the potential problem is in the code. Use a Google

More information

Chapter 1: Introducing SQL Server

Chapter 1: Introducing SQL Server Leiter ftoc.tex V3-03/25/2009 1:31pm Page xv Introduction xxvii Chapter 1: Introducing SQL Server 2008 1 A Condensed History of SQL Server 1 In the Beginning 1 The Evolution of a Database 1 Microsoft Goes

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Full file at

Full file at ch2 True/False Indicate whether the statement is true or false. 1. The SQL command to create a database table is an example of DML. 2. A user schema contains all database objects created by a user. 3.

More information

Index. B backing up 76 7

Index. B backing up 76 7 A Access, other DBMSs and 9 Action queries 121, 125 defined 125 address book 16, 34 age calculations 60 answer table 36 editing data in 147 8 field names 294 multi-table queries 294 queries and 155 queries

More information

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255.

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255. MySQL: Data Types 1. Numeric Data Types ZEROFILL automatically adds the UNSIGNED attribute to the column. UNSIGNED disallows negative values. SIGNED (default) allows negative values. BIT[(M)] A bit-field

More information

Sql Server Syllabus. Overview

Sql Server Syllabus. Overview Sql Server Syllabus Overview This SQL Server training teaches developers all the Transact-SQL skills they need to create database objects like Tables, Views, Stored procedures & Functions and triggers

More information

What s New in Access Learning the history of Access changes. Understanding what s new in Access 2002

What s New in Access Learning the history of Access changes. Understanding what s new in Access 2002 4009ch01.qxd 07/31/01 5:07 PM Page 1 C HAPTER 1 What s New in Access 2002 Learning the history of Access changes Understanding what s new in Access 2002 Understanding what s new in the Jet and SQL Server

More information

Replication. Some uses for replication:

Replication. Some uses for replication: Replication SQL Server 2000 Replication allows you to distribute copies of data from one database to another, on the same SQL Server instance or between different instances. Replication allows data to

More information

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc.

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc. KB_SQL Release Notes Version 4.3.Q2 Copyright 2003 by All rights reserved., Ashburn, Virginia, USA. Printed in the United States of America. No part of this manual may be reproduced in any form or by any

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Update Table Schema Sql Server 2008 Add Column After

Update Table Schema Sql Server 2008 Add Column After Update Table Schema Sql Server 2008 Add Column After ALTER COLUMN ENCRYPTION KEY (Transact-SQL) Applies to: SQL Server (SQL Server 2008 through current version), Azure SQL Database, the owner will remain

More information

Drop Users Syntax In Sql Server 2000 Orphaned

Drop Users Syntax In Sql Server 2000 Orphaned Drop Users Syntax In Sql Server 2000 Orphaned Applies To: SQL Server 2014, SQL Server 2016 Preview Syntax Before dropping a database user that owns securables, you must first drop or transfer. To access

More information

Introduction to SQL Server 2005/2008 and Transact SQL

Introduction to SQL Server 2005/2008 and Transact SQL Introduction to SQL Server 2005/2008 and Transact SQL Week 4: Normalization, Creating Tables, and Constraints Some basics of creating tables and databases Steve Stedman - Instructor Steve@SteveStedman.com

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

More information

OneStop Reporting 4.5 OSR Administration User Guide

OneStop Reporting 4.5 OSR Administration User Guide OneStop Reporting 4.5 OSR Administration User Guide Doc. Version 1.2 Updated: 10-Dec-14 Copyright OneStop Reporting AS Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

System Pages (Setup Admins Only)

System Pages (Setup Admins Only) System Pages (Setup Admins Only) 1 Primary System Pages 2 More on Page Views & Sub Page Views 3 4 System Lookup Pages 5 6 7 Distinguishing Tables, Pages, Filtered Pages, & Page Views 8 9 Reasons to Create

More information

Many-to-Many One-to-One Limiting Values Summary

Many-to-Many One-to-One Limiting Values Summary page 1 Meet the expert: Andy Baron is a nationally recognized industry expert specializing in Visual Basic, Visual C#, ASP.NET, ADO.NET, SQL Server, and SQL Server Business Intelligence. He is an experienced

More information

Creating and Configuring Databases

Creating and Configuring Databases 3 Creating and Configuring Databases This chapter begins by examining SQL Server database storage concepts and database sizing considerations. We will also review how to create, change, and configure a

More information

HP Universal CMDB. Database Guide. For the Windows, Red Hat Enterprise Linux, and Oracle Enterprise Linux operating systems Software Version: 10.

HP Universal CMDB. Database Guide. For the Windows, Red Hat Enterprise Linux, and Oracle Enterprise Linux operating systems Software Version: 10. HP Universal CMDB For the Windows, Red Hat Enterprise Linux, and Oracle Enterprise Linux operating systems Software Version: 10.01 Database Guide Document Release Date: December 2012 Software Release Date:

More information

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault Introduction What is Microsoft Data Protection Manager (DPM)? The Microsoft Data Protection Manager is a member of the Microsoft System Center family of management products. DPM provides continuous data

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

Activant Solutions Inc. SQL Server 2005: Data Storage

Activant Solutions Inc. SQL Server 2005: Data Storage Activant Solutions Inc. SQL Server 2005: Data Storage SQL Server 2005 suite Course 2 of 4 This class is designed for Beginner/Intermediate SQL Server 2005 System Administrators Objectives Understand how

More information

SQL Studio (BC) HELP.BCDBADASQL_72. Release 4.6C

SQL Studio (BC) HELP.BCDBADASQL_72. Release 4.6C HELP.BCDBADASQL_72 Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

Course: US02EBCA02 (Working with RDBMS for Small Scale Organizations) Effective from June

Course: US02EBCA02 (Working with RDBMS for Small Scale Organizations) Effective from June Course: US02EBCA02 (Working with RDBMS for Small Scale Organizations) Effective from June - 2010 Credits: 2 Unit : 1 Question Bank Lectures per week: 2 Hours Marks: 2 (Short Questions) Q 1: What is RDBMS?

More information

Exact Numeric Data Types

Exact Numeric Data Types SQL Server Notes for FYP SQL data type is an attribute that specifies type of data of any object. Each column, variable and expression has related data type in SQL. You would use these data types while

More information

DBArtisan 8.6 New Features Guide. Published: January 13, 2009

DBArtisan 8.6 New Features Guide. Published: January 13, 2009 Published: January 13, 2009 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed substantially prior to final

More information

PL/SQL Developer 7.0 New Features. December 2005

PL/SQL Developer 7.0 New Features. December 2005 PL/SQL Developer 7.0 New Features December 2005 L/SQL Developer 7.0 New Features 3 Contents CONTENTS... 3 1. INTRODUCTION... 5 2. DIAGRAM WINDOW... 6 2.1 CREATING A DIAGRAM...6 2.2 SAVING AND OPENING

More information

Cloud Attached Storage

Cloud Attached Storage Using CTERA Appliances in Replicated Configuration Cloud Attached Storage June 2013 Version 3.2 1 Introduction This document explains how to use CTERA C series appliances in replicated configuration. In

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

Acknowledgments Introduction to Database Systems p. 1 Objectives p. 1 Functions of a Database p. 1 Database Management System p.

Acknowledgments Introduction to Database Systems p. 1 Objectives p. 1 Functions of a Database p. 1 Database Management System p. Preface p. xvii Acknowledgments p. xxv Introduction to Database Systems p. 1 Objectives p. 1 Functions of a Database p. 1 Database Management System p. 2 Database Components p. 8 Database Development Process

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide Copyright 2009 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other

More information

SQL Coding Guidelines

SQL Coding Guidelines SQL Coding Guidelines 1. Always specify SET NOCOUNT ON at the top of the stored procedure, this command suppresses the result set count information thereby saving some amount of time spent by SQL Server.

More information

Release Bulletin Enterprise Connect Data Access 15.0 for Linux and UNIX

Release Bulletin Enterprise Connect Data Access 15.0 for Linux and UNIX Release Bulletin Enterprise Connect Data Access 15.0 for Linux and UNIX Document ID: DC74921-01-1500-02 Last revised: January 2008 Topic Page 1. Accessing current release bulletin information 2 2. Product

More information

6232B: Implementing a Microsoft SQL Server 2008 R2 Database

6232B: Implementing a Microsoft SQL Server 2008 R2 Database 6232B: Implementing a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course is intended for Microsoft SQL Server database developers who are responsible for implementing a database

More information

Scenario Manager User Guide. Release September 2013

Scenario Manager User Guide. Release September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Document Control Number: 9MN12-62110017 Document Number: SMUG-13-FCCM-0017-6.2.1-01 Oracle

More information

WIRELESS DATABASE VIEWER PLUS (ENTERPRISE EDITION) SERVER SIDE USER GUIDE

WIRELESS DATABASE VIEWER PLUS (ENTERPRISE EDITION) SERVER SIDE USER GUIDE WIRELESS DATABASE VIEWER PLUS (ENTERPRISE EDITION) SERVER SIDE USER GUIDE PRODUCT VERSION: 4.2 Wireless Database Viewer Plus(Enterprise Edition) Page 1 CONTENTS 1 INTRODUCTION...4 1.1 FEATURES...4 2 INSTALLATION...5

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

More information

What's New in Access 2000 p. 1 A Brief Access History p. 2 Access the Best Access Ever p. 5 Microsoft Office Developer Features p.

What's New in Access 2000 p. 1 A Brief Access History p. 2 Access the Best Access Ever p. 5 Microsoft Office Developer Features p. Foreword p. xxxiii About the Authors p. xxxvi Introduction p. xxxviii What's New in Access 2000 p. 1 A Brief Access History p. 2 Access 2000--the Best Access Ever p. 5 Microsoft Office Developer Features

More information

Exploring Microsoft Office Access Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2010 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

Reliable High-Speed Connection to Publication Database for Synchronization

Reliable High-Speed Connection to Publication Database for Synchronization PCS Axis v1.9 Client/Server New Installation with Replication May 2015 Introduction American Innovations (AI) is pleased to announce version 1.9 of our Pipeline Compliance System Axis software (PCS Axis

More information

Alter Schema Dbo Transfer Sql Server 2000

Alter Schema Dbo Transfer Sql Server 2000 Alter Schema Dbo Transfer Sql Server 2000 All of the SQL Delta Duo Compare tools compare schema and data of two databases. As the name Supports SQL Server 2000 through to 2014 and Azure. I am using Sql

More information

BMC Remedy AR System change ID utility

BMC Remedy AR System change ID utility BMC Remedy AR System change ID utility The BMC Remedy AR System change ID utility enables you to change the IDs of certain objects. This document explains the purpose and usage of the utility. The BMC

More information

Installation Instructions for SAS Activity-Based Management 6.2

Installation Instructions for SAS Activity-Based Management 6.2 Installation Instructions for SAS Activity-Based Management 6.2 Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., Installation Instructions for SAS

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

NETWRIX ACTIVE DIRECTORY CHANGE REPORTER

NETWRIX ACTIVE DIRECTORY CHANGE REPORTER NETWRIX ACTIVE DIRECTORY CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 7.2 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Database Driver Sybase CT Library. Release 4.25

Database Driver Sybase CT Library. Release 4.25 Database Driver Sybase CT Library Release 4.25 May 2000 1 Database Driver for SYBASE CT Library The SYBASE Open Client product provides software for communicating with SYBASE SQL Server and SYBASE Open

More information

HOW TO CREATE AND MAINTAIN DATABASES AND TABLES. By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL

HOW TO CREATE AND MAINTAIN DATABASES AND TABLES. By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL HOW TO CREATE AND MAINTAIN DATABASES AND TABLES By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL What is SQL? SQL (pronounced "ess-que-el") stands for Structured Query Language. SQL is used to communicate

More information

Data Express 4.0. Data Masking Guide

Data Express 4.0. Data Masking Guide Data Express 4.0 Data Masking Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2013. All rights reserved. MICRO FOCUS,

More information

POWER BI COURSE CONTENT

POWER BI COURSE CONTENT POWER BI COURSE CONTENT Why Power BI Training? Power BI is one of the newest additions to Office 365. In this course you will learn Power BI from beginner to advance. Power BI Course enables you to perform

More information

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow Pipeline Integration Services Creating an ETL Solution with SSIS Module Overview Introduction to ETL with SSIS Implementing Data Flow Lesson 1: Introduction to ETL with SSIS What Is SSIS? SSIS Projects

More information

Lab # 2. Data Definition Language (DDL) Eng. Alaa O Shama

Lab # 2. Data Definition Language (DDL) Eng. Alaa O Shama The Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 4113: Database Lab Lab # 2 Data Definition Language (DDL) Eng. Alaa O Shama October, 2015 Objective To be familiar

More information

Manual Trigger Sql Server 2008 Update Inserted Or Deleted

Manual Trigger Sql Server 2008 Update Inserted Or Deleted Manual Trigger Sql Server 2008 Update Inserted Or Deleted Am new to SQL scripting and SQL triggers, any help will be appreciated ://sql-serverperformance.com/2010/transactional-replication-2008-r2/ qf.customer_working_hours

More information

Service Manager. Ops Console On-Premise User Guide

Service Manager. Ops Console On-Premise User Guide Service Manager powered by HEAT Ops Console On-Premise User Guide 2017.2.1 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information