Firebird 2.0 Final sürüm kullanılabilir durumda
Firebird 2.0 Final sürüm kullanılabilir durumda
http://www.firebirdsql.org/index.php?op ... engine_200
Kurmadan önce bir önceki versiyona ait herseyi kaldırın
bilhassa gds32 client dll i eger kaldırmadı iseniz Fb2.0 kurulumundan sonra sorun yasamanıza sebep oluyor.
Kurmadan önce bir önceki versiyona ait herseyi kaldırın
bilhassa gds32 client dll i eger kaldırmadı iseniz Fb2.0 kurulumundan sonra sorun yasamanıza sebep oluyor.
ÜŞENME,ERTELEME,VAZGEÇME
- kadirkurtoglu
- Üye
- Mesajlar: 748
- Kayıt: 22 May 2005 01:20
- Konum: Uzakta Görünen Tepeden...
-
- Kıdemli Üye
- Mesajlar: 1223
- Kayıt: 26 Nis 2005 04:08
- kadirkurtoglu
- Üye
- Mesajlar: 748
- Kayıt: 22 May 2005 01:20
- Konum: Uzakta Görünen Tepeden...
- kadirkurtoglu
- Üye
- Mesajlar: 748
- Kayıt: 22 May 2005 01:20
- Konum: Uzakta Görünen Tepeden...
New in Firebird 2.0
Derived Tables
A. Brinkman
Implemented support for derived tables in DSQL (subqueries in FROM clause) as defined by
SQL200X. A derived table is a set, derived from a dynamic SELECT statement. Derived tables can be
nested, if required, to build complex queries and they can be involved in joins as though they were
normal tables or views.
More details under Derived Tables in the DML chapter.
PSQL Now Supports Named Cursors
D. Yemanov
Multiple named (i.e. explicit) cursors are now supported in PSQL and in DSQL EXECUTE BLOCK
statements. More information in the chapter Explicit Cursors.
Reimplemented Protocols on Windows
D. Yemanov
Two significant changes have been made to the Windows-only protocols.-
Local Protocol--XNET
Firebird 2.0 has replaced the former implementation of the local transport protocol (often referred to
as IPC or IPServer) with a new one, named XNET.
It serves exactly the same goal, to provide an efficient way to connect to server located on the same
machine as the connecting client without a remote node name in the connection string. The new implementation
is different and addresses the known issues with the old protocol.
Like the old IPServer implementation, the XNET implementation uses shared memory for interprocess
communication. However, XNET eliminates the use of window messages to deliver attachment
requests and it also implements a different synchronization logic.
Benefits of the XNET Protocol over IPServer
Besides providing a more robust protocol for local clients, the XNET protocol brings some notable
benefits:
4
• it works with Classic Server
• it works for non-interactive services and terminal sessions
• it eliminates lockups when a number of simultaneous connections are attempted
Performance
The XNET implementation should be similar to the old IPServer implementation, although XNET is
expected to be slightly faster.
Disadvantages
The one disadvantage is that the XNET and IPServer implementations are not compatible with each
other. This makes it essential that your fbclient.dll version should match the version of the server binaries
you are using (fbserver.exe or fb_inet_server.exe) exactly. It will not be possible to to establish a
local connection if this detail is overlooked. (A TCP localhost loopback connection via an ill-matched
client will still do the trick, of course).
Change to WNET (“NetBEUI”) Protocol
WNET (a.k.a. NetBEUI) protocol no longer performs client impersonation.
In all previous Firebird versions, remote requests via WNET are performed in the context of the client
security token. Since the server serves every connection according to its client security credentials,
this means that, if the client machine is running some OS user from an NT domain, that user should
have appropriate permissions to access the physical database file, UDF libraries, etc., on the server
filesystem. This situation is contrary to what is generally regarded as proper for a client-server setup
with a protected database.
Such impersonation has been removed in Firebird 2.0. WNET connections are now truly client-server
and behave the same way as TCP ones, i.e., with no presumptions with regard to the rights of OS
users.
Reworking of Garbage Collection
V. Horsun
Since Firebird 1.0 and earlier, the Superserver engine has performed background garbage collection,
maintaining information about each new record version produced by an UPDATE or DELETE statement.
As soon as the old versions are no longer “interesting”, i.e. when they become older than the
Oldest Snapshot transaction (seen in the gstat -header output) the engine signals for them to be removed
by the garbage collector.
Background GC eliminates the need to re-read the pages containing these versions via a SELECT
COUNT(*) FROM aTable or other table-scanning query from a user, as occurs in Classic and in
versions of InterBase prior to v.6.0. This earlier GC mechanism is known as cooperative garbage collection.
Background GC also averts the possibility that those pages will be missed because they are seldom
read. (A sweep, of course, would find those unused record versions and clear them, but the next sweep
is not necessarily going to happen soon.) A further benefit is the reduction in I/O, because of the high-
New in Firebird 2.0
5
er probability that subsequently requested pages still reside in the buffer cache.
Between the point where the engine notifies the garbage collector about a page containing unused versions
and the point when the garbage collector gets around to reading that page, a new transaction
could update a record on it. The garbage collector cannot clean up this record if this later transaction
number is higher than the Oldest Snapshot or is still active. The engine again notifies the garbage collector
about this page number, overriding the earlier notification about it and the garbage will be
cleaned at some later time.
In Firebird 2.0 Superserver, both cooperative and background garbage collection are now possible. To
manage it, the new configuration parameter GCPolicy was introduced. It can be set to:
• cooperative - garbage collection will be performed only in cooperative mode (like Classic) and the
engine will not track old record versions. This reverts GC behaviour to that of IB 5.6 and earlier. It
is the only option for Classic.
• background - garbage collection will be performed only by background threads, as is the case for
Firebird 1.5 and earlier. User table-scan requests will not remove unused record versions but will
cause the GC thread to be notified about any page where an unused record version is detected. The
engine will also remember those page numbers where UPDATE and DELETE statements created
back versions.
• combined (the installation default for Superserver) - both background and cooperative garbage collection
are performed.
Note
The Classic server ignores this parameter and always works in “cooperative” mode.
Porting of the Services API to Classic is Complete
N. Samofatov
Porting of the Services API to Classic architecture is now complete. All Services API functions are
now available on both Linux and Windows Classic servers, with no limitations. Known issues with
gsec error reporting in previous versions of Firebird are eliminated.
Lock Timeout for WAIT Transactions
A. Karyakin, D. Yemanov
All Firebird versions provide two transaction wait modes: NO WAIT and WAIT. NO WAIT mode
means that lock conflicts and deadlocks are reported immediately, while WAIT performs a blocking
wait which times out only when the conflicting concurrent transaction ends by being committed or
rolled back.
The new feature extends the WAIT mode by making provision to set a finite time interval to wait for
the concurrent transactions. If the timeout has passed, an error (isc_lock_timeout) is reported.
Timeout intervals are specified per transaction, using the new TPB constant isc_tpb_lock_timeout in
the API or, in DSQL, the LOCK TIMEOUT <value> clause of the SET TRANSACTION statement.
New in Firebird 2.0
6
New Implementation of String Search Operators
N. Samofatov
1. The operators now work correctly with BLOBs of any size. Issues with only the first segment being
searched and with searches missing matches that straddle segment boundaries are now gone.
2. Pattern matching now uses a single-pass Knuth-Morris-Pratt algorithm, improving performance
when complex patterns are used.
3. The engine no longer crashes when NULL is used as ESCAPE character for LIKE
Reworking of Updatable Views
D. Yemanov
A reworking has been done to resolve problems with views that are implicitly updatable, but still have
update triggers. This is an important change that will affect systems written to take advantage of the
undocumented [mis]behaviour in previous versions.
For details, see the notes in DDL Migration Issues in the Compatibility chapter of these notes.
Additional Database Shutdown Modes Introduced
N. Samofatov
Single-user and full shutdown modes are implemented using new [state] parameters for the gfix -
shut and gfix -online commands.
Syntax Pattern
gfix <command> [<state>] [<options>]
<command>> ::= {-shut | -online}
<state> ::= {normal | multi | single | full}
<options> ::= {-force <timeout> | -tran | -attach}
• normal state = online database
• multi state = multi-user shutdown mode (the legacy one, unlimited attachments of SYSDBA/owner
are allowed)
• single state = single-user shutdown (only one attachment is allowed, used by the restore process)
• full state = full/exclusive shutdown (no attachments are allowed)
For more details, refer to the section on Gfix New Shutdown Modes, in the Utilities chapter.
New in Firebird 2.0
7
UDFs Improved re NULL Handling
C. Valderrama
Signalling SQL NULL
• Ability to signal SQL NULL via a NULL pointer (see Signal SQL NULL in UDFs).
• External function library ib_udf upgraded to allow the string functions ASCII_CHAR, LOWER,
LPAD, LTRIM, RPAD, RTIM, SUBSTR and SUBSTRLEN to return NULL and have it interpreted
correctly.
The script ib_udf_upgrade.sql can be applied to pre-v.2 databases that have these functions
declared, to upgrade them to work with the upgraded library. This script should be used only when
you are using the new ib_udf library with Firebird v2 and operation requests are modified to anticipate
nulls.
Run-time Checking for Concatenation Overflow
D. Yemanov
Compile-time checking for concatenation overflow has been replaced by run-time checking.
From Firebird 1.0 onward, concatenation operations have been checked for the possibility that the resulting
string might exceed the string length limit of 32,000 bytes, i.e. overflow. This check was performed
during the statement prepare, using the declared operand sizes and would throw an error for an
expressions such as:
CAST('qwe' AS VARCHAR(30000)) || CAST('rty' AS VARCHAR(30000))
From Firebird 2.0 onward, this expression throws only a warning at prepare time and the overflow
check is repeated at runtime, using the sizes of the actual operands. The result is that our example will
be executed without errors being thrown. The isc_concat_overflow exception is now thrown only for
actual overflows, thus bringing the behaviour of overflow detection for concatenation into line with
that for arithmetic operations.
Changes to Synchronisation Logic
N. Samofatov
1. Lock contention in the lock manager and in the SuperServer thread pool manager has been reduced
significantly
2. A rare race condition was detected and fixed, that could cause Superserver to hang during request
processing until the arrival of the next request
3. Lock manager memory dumps have been made more informative and OWN_hung is detected
correctly
4. Decoupling of lock manager synchronization objects for different engine instances was imple-
New in Firebird 2.0
8
mented
Support for 64-bit Platforms
A. Peshkov, N. Samofatov
Firebird 2.0 will support 64-bit platforms.
Record Enumeration Limits Increased
N. Samofatov
40-bit (64-bit internally) record enumerators have been introduced to overcome the ~30GB table size
limit imposed by 32-bit record enumeration.
Debugging Improvements
Various Contributors
Improved Reporting from Bugchecks
BUGCHECK log messages now include file name and line number. (A. Brinkman)
Updated Internal Structure Reporting
Routines that print out various internal structures (DSQL node tree, BLR, DYN, etc) have been updated.
(N. Samofatov)
New Debug Logging Facilities
Thread-safe and signal-safe debug logging facilities have been implemented. (N. Samofatov)
Diagnostic Enhancement
Syslog messages will be copied to the user's tty if a process is attached to it. (A. Peshkov)
Improved Connection Handling on POSIX Superserver
A. Peshkov
Posix SS builds now handle SIGTERM and SIGINT to shutdown all connections gracefully. (A.
Peshkov)
New in Firebird 2.0
9
PSQL Invariant Tracking Reworked
N. Samofatov
Invariant tracking in PSQL and request cloning logic were reworked to fix a number of issues with recursive
procedures, for example SF bug #627057.
Invariant tracking is the process performed by the BLR compiler and the optimizer to decide whether
an "invariant" (an expression, which might be a nested subquery) is independent from the parent context.
It is used to perform one-time evaluations of such expressions and then cache the result.
If some invariant is not determined, we lose in performance. If some variant is wrongly treated as invariant,
we see wrong results.
Example
select * from rdb$relations
where rdb$relation_id <
( select rdb$relation_id from rdb$database )
This query performs only one fetch from rdb$database instead of evaluating the subquery for every
row of rdb$relations.
ROLLBACK RETAIN Syntax Support
D. Yemanov
Firebird 2.0 adds an optional RETAIN clause to the DSQL ROLLBACK statement to make it consistent
with COMMIT [RETAIN].
See ROLLBACK RETAIN Syntax in the chapter about DML.
No More Registry Search on Win32 Servers
D. Yemanov
The root directory lookup path has changed so that server processes on Windows no longer use the
Registry.
Important
The command-line utilities still check the Registry.
More Optimizer Improvements
A. Brinkman
Better cost-based calculation has been included in the optimizer routines.
New in Firebird 2.0
10
ODS Changes
Various Contributors
The new On-Disk Structure (ODS) is ODS11.
For more information, see the chapter ODS Changes.
New in Firebird 2.0
11
Derived Tables
A. Brinkman
Implemented support for derived tables in DSQL (subqueries in FROM clause) as defined by
SQL200X. A derived table is a set, derived from a dynamic SELECT statement. Derived tables can be
nested, if required, to build complex queries and they can be involved in joins as though they were
normal tables or views.
More details under Derived Tables in the DML chapter.
PSQL Now Supports Named Cursors
D. Yemanov
Multiple named (i.e. explicit) cursors are now supported in PSQL and in DSQL EXECUTE BLOCK
statements. More information in the chapter Explicit Cursors.
Reimplemented Protocols on Windows
D. Yemanov
Two significant changes have been made to the Windows-only protocols.-
Local Protocol--XNET
Firebird 2.0 has replaced the former implementation of the local transport protocol (often referred to
as IPC or IPServer) with a new one, named XNET.
It serves exactly the same goal, to provide an efficient way to connect to server located on the same
machine as the connecting client without a remote node name in the connection string. The new implementation
is different and addresses the known issues with the old protocol.
Like the old IPServer implementation, the XNET implementation uses shared memory for interprocess
communication. However, XNET eliminates the use of window messages to deliver attachment
requests and it also implements a different synchronization logic.
Benefits of the XNET Protocol over IPServer
Besides providing a more robust protocol for local clients, the XNET protocol brings some notable
benefits:
4
• it works with Classic Server
• it works for non-interactive services and terminal sessions
• it eliminates lockups when a number of simultaneous connections are attempted
Performance
The XNET implementation should be similar to the old IPServer implementation, although XNET is
expected to be slightly faster.
Disadvantages
The one disadvantage is that the XNET and IPServer implementations are not compatible with each
other. This makes it essential that your fbclient.dll version should match the version of the server binaries
you are using (fbserver.exe or fb_inet_server.exe) exactly. It will not be possible to to establish a
local connection if this detail is overlooked. (A TCP localhost loopback connection via an ill-matched
client will still do the trick, of course).
Change to WNET (“NetBEUI”) Protocol
WNET (a.k.a. NetBEUI) protocol no longer performs client impersonation.
In all previous Firebird versions, remote requests via WNET are performed in the context of the client
security token. Since the server serves every connection according to its client security credentials,
this means that, if the client machine is running some OS user from an NT domain, that user should
have appropriate permissions to access the physical database file, UDF libraries, etc., on the server
filesystem. This situation is contrary to what is generally regarded as proper for a client-server setup
with a protected database.
Such impersonation has been removed in Firebird 2.0. WNET connections are now truly client-server
and behave the same way as TCP ones, i.e., with no presumptions with regard to the rights of OS
users.
Reworking of Garbage Collection
V. Horsun
Since Firebird 1.0 and earlier, the Superserver engine has performed background garbage collection,
maintaining information about each new record version produced by an UPDATE or DELETE statement.
As soon as the old versions are no longer “interesting”, i.e. when they become older than the
Oldest Snapshot transaction (seen in the gstat -header output) the engine signals for them to be removed
by the garbage collector.
Background GC eliminates the need to re-read the pages containing these versions via a SELECT
COUNT(*) FROM aTable or other table-scanning query from a user, as occurs in Classic and in
versions of InterBase prior to v.6.0. This earlier GC mechanism is known as cooperative garbage collection.
Background GC also averts the possibility that those pages will be missed because they are seldom
read. (A sweep, of course, would find those unused record versions and clear them, but the next sweep
is not necessarily going to happen soon.) A further benefit is the reduction in I/O, because of the high-
New in Firebird 2.0
5
er probability that subsequently requested pages still reside in the buffer cache.
Between the point where the engine notifies the garbage collector about a page containing unused versions
and the point when the garbage collector gets around to reading that page, a new transaction
could update a record on it. The garbage collector cannot clean up this record if this later transaction
number is higher than the Oldest Snapshot or is still active. The engine again notifies the garbage collector
about this page number, overriding the earlier notification about it and the garbage will be
cleaned at some later time.
In Firebird 2.0 Superserver, both cooperative and background garbage collection are now possible. To
manage it, the new configuration parameter GCPolicy was introduced. It can be set to:
• cooperative - garbage collection will be performed only in cooperative mode (like Classic) and the
engine will not track old record versions. This reverts GC behaviour to that of IB 5.6 and earlier. It
is the only option for Classic.
• background - garbage collection will be performed only by background threads, as is the case for
Firebird 1.5 and earlier. User table-scan requests will not remove unused record versions but will
cause the GC thread to be notified about any page where an unused record version is detected. The
engine will also remember those page numbers where UPDATE and DELETE statements created
back versions.
• combined (the installation default for Superserver) - both background and cooperative garbage collection
are performed.
Note
The Classic server ignores this parameter and always works in “cooperative” mode.
Porting of the Services API to Classic is Complete
N. Samofatov
Porting of the Services API to Classic architecture is now complete. All Services API functions are
now available on both Linux and Windows Classic servers, with no limitations. Known issues with
gsec error reporting in previous versions of Firebird are eliminated.
Lock Timeout for WAIT Transactions
A. Karyakin, D. Yemanov
All Firebird versions provide two transaction wait modes: NO WAIT and WAIT. NO WAIT mode
means that lock conflicts and deadlocks are reported immediately, while WAIT performs a blocking
wait which times out only when the conflicting concurrent transaction ends by being committed or
rolled back.
The new feature extends the WAIT mode by making provision to set a finite time interval to wait for
the concurrent transactions. If the timeout has passed, an error (isc_lock_timeout) is reported.
Timeout intervals are specified per transaction, using the new TPB constant isc_tpb_lock_timeout in
the API or, in DSQL, the LOCK TIMEOUT <value> clause of the SET TRANSACTION statement.
New in Firebird 2.0
6
New Implementation of String Search Operators
N. Samofatov
1. The operators now work correctly with BLOBs of any size. Issues with only the first segment being
searched and with searches missing matches that straddle segment boundaries are now gone.
2. Pattern matching now uses a single-pass Knuth-Morris-Pratt algorithm, improving performance
when complex patterns are used.
3. The engine no longer crashes when NULL is used as ESCAPE character for LIKE
Reworking of Updatable Views
D. Yemanov
A reworking has been done to resolve problems with views that are implicitly updatable, but still have
update triggers. This is an important change that will affect systems written to take advantage of the
undocumented [mis]behaviour in previous versions.
For details, see the notes in DDL Migration Issues in the Compatibility chapter of these notes.
Additional Database Shutdown Modes Introduced
N. Samofatov
Single-user and full shutdown modes are implemented using new [state] parameters for the gfix -
shut and gfix -online commands.
Syntax Pattern
gfix <command> [<state>] [<options>]
<command>> ::= {-shut | -online}
<state> ::= {normal | multi | single | full}
<options> ::= {-force <timeout> | -tran | -attach}
• normal state = online database
• multi state = multi-user shutdown mode (the legacy one, unlimited attachments of SYSDBA/owner
are allowed)
• single state = single-user shutdown (only one attachment is allowed, used by the restore process)
• full state = full/exclusive shutdown (no attachments are allowed)
For more details, refer to the section on Gfix New Shutdown Modes, in the Utilities chapter.
New in Firebird 2.0
7
UDFs Improved re NULL Handling
C. Valderrama
Signalling SQL NULL
• Ability to signal SQL NULL via a NULL pointer (see Signal SQL NULL in UDFs).
• External function library ib_udf upgraded to allow the string functions ASCII_CHAR, LOWER,
LPAD, LTRIM, RPAD, RTIM, SUBSTR and SUBSTRLEN to return NULL and have it interpreted
correctly.
The script ib_udf_upgrade.sql can be applied to pre-v.2 databases that have these functions
declared, to upgrade them to work with the upgraded library. This script should be used only when
you are using the new ib_udf library with Firebird v2 and operation requests are modified to anticipate
nulls.
Run-time Checking for Concatenation Overflow
D. Yemanov
Compile-time checking for concatenation overflow has been replaced by run-time checking.
From Firebird 1.0 onward, concatenation operations have been checked for the possibility that the resulting
string might exceed the string length limit of 32,000 bytes, i.e. overflow. This check was performed
during the statement prepare, using the declared operand sizes and would throw an error for an
expressions such as:
CAST('qwe' AS VARCHAR(30000)) || CAST('rty' AS VARCHAR(30000))
From Firebird 2.0 onward, this expression throws only a warning at prepare time and the overflow
check is repeated at runtime, using the sizes of the actual operands. The result is that our example will
be executed without errors being thrown. The isc_concat_overflow exception is now thrown only for
actual overflows, thus bringing the behaviour of overflow detection for concatenation into line with
that for arithmetic operations.
Changes to Synchronisation Logic
N. Samofatov
1. Lock contention in the lock manager and in the SuperServer thread pool manager has been reduced
significantly
2. A rare race condition was detected and fixed, that could cause Superserver to hang during request
processing until the arrival of the next request
3. Lock manager memory dumps have been made more informative and OWN_hung is detected
correctly
4. Decoupling of lock manager synchronization objects for different engine instances was imple-
New in Firebird 2.0
8
mented
Support for 64-bit Platforms
A. Peshkov, N. Samofatov
Firebird 2.0 will support 64-bit platforms.
Record Enumeration Limits Increased
N. Samofatov
40-bit (64-bit internally) record enumerators have been introduced to overcome the ~30GB table size
limit imposed by 32-bit record enumeration.
Debugging Improvements
Various Contributors
Improved Reporting from Bugchecks
BUGCHECK log messages now include file name and line number. (A. Brinkman)
Updated Internal Structure Reporting
Routines that print out various internal structures (DSQL node tree, BLR, DYN, etc) have been updated.
(N. Samofatov)
New Debug Logging Facilities
Thread-safe and signal-safe debug logging facilities have been implemented. (N. Samofatov)
Diagnostic Enhancement
Syslog messages will be copied to the user's tty if a process is attached to it. (A. Peshkov)
Improved Connection Handling on POSIX Superserver
A. Peshkov
Posix SS builds now handle SIGTERM and SIGINT to shutdown all connections gracefully. (A.
Peshkov)
New in Firebird 2.0
9
PSQL Invariant Tracking Reworked
N. Samofatov
Invariant tracking in PSQL and request cloning logic were reworked to fix a number of issues with recursive
procedures, for example SF bug #627057.
Invariant tracking is the process performed by the BLR compiler and the optimizer to decide whether
an "invariant" (an expression, which might be a nested subquery) is independent from the parent context.
It is used to perform one-time evaluations of such expressions and then cache the result.
If some invariant is not determined, we lose in performance. If some variant is wrongly treated as invariant,
we see wrong results.
Example
select * from rdb$relations
where rdb$relation_id <
( select rdb$relation_id from rdb$database )
This query performs only one fetch from rdb$database instead of evaluating the subquery for every
row of rdb$relations.
ROLLBACK RETAIN Syntax Support
D. Yemanov
Firebird 2.0 adds an optional RETAIN clause to the DSQL ROLLBACK statement to make it consistent
with COMMIT [RETAIN].
See ROLLBACK RETAIN Syntax in the chapter about DML.
No More Registry Search on Win32 Servers
D. Yemanov
The root directory lookup path has changed so that server processes on Windows no longer use the
Registry.
Important
The command-line utilities still check the Registry.
More Optimizer Improvements
A. Brinkman
Better cost-based calculation has been included in the optimizer routines.
New in Firebird 2.0
10
ODS Changes
Various Contributors
The new On-Disk Structure (ODS) is ODS11.
For more information, see the chapter ODS Changes.
New in Firebird 2.0
11
- kadirkurtoglu
- Üye
- Mesajlar: 748
- Kayıt: 22 May 2005 01:20
- Konum: Uzakta Görünen Tepeden...
yukardakilerin Ana Başlıkları ise
Derived Tables
PSQL Now Supports Named
Reimplemented Protocols on Windows
Local Protocol--XNET
Change to WNET (NetBEUI) Protocol
Reworking of Garbage Collection
Porting of the Services API to Classic is Complete
Lock Timeout for WAIT Transactions
New Implementation of String Search Operators
Reworking of Updatable Views
Additional Database Shutdown Modes Introduced
UDFs Improved re NULL Handling
Signalling SQL NULL
Run-time Checking for Concatenation Overflow
Changes to Synchronisation Logic
Support for 64-bit Platforms
Record Enumeration Limits Increased
Debugging Improvements
Improved Reporting from Bugchecks
Updated Internal Structure Reporting
New Debug Logging Facilities
Diagnostic Enhancement
Improved Connection Handling on POSIX Superserver
PSQL Invariant Tracking Reworked
ROLLBACK RETAIN Syntax Support
No More Registry Search on Win32 Servers
More Optimizer Improvements
ODS Changes
Derived Tables
PSQL Now Supports Named
Reimplemented Protocols on Windows
Local Protocol--XNET
Change to WNET (NetBEUI) Protocol
Reworking of Garbage Collection
Porting of the Services API to Classic is Complete
Lock Timeout for WAIT Transactions
New Implementation of String Search Operators
Reworking of Updatable Views
Additional Database Shutdown Modes Introduced
UDFs Improved re NULL Handling
Signalling SQL NULL
Run-time Checking for Concatenation Overflow
Changes to Synchronisation Logic
Support for 64-bit Platforms
Record Enumeration Limits Increased
Debugging Improvements
Improved Reporting from Bugchecks
Updated Internal Structure Reporting
New Debug Logging Facilities
Diagnostic Enhancement
Improved Connection Handling on POSIX Superserver
PSQL Invariant Tracking Reworked
ROLLBACK RETAIN Syntax Support
No More Registry Search on Win32 Servers
More Optimizer Improvements
ODS Changes
- kadirkurtoglu
- Üye
- Mesajlar: 748
- Kayıt: 22 May 2005 01:20
- Konum: Uzakta Görünen Tepeden...