Flush the buffer cache in [tag]Oracle[/tag]. This invalidates also the read cache, so the query performance results provides from the physical reads time.
alter system flush buffer_cache;
This command is not available prior to 10g. It flushes the buffer cache in the SGA.
9i had an undocumented command to flush the buffer cache:
alter session set events = 'immediate trace name flush_cache';
pjdc database oracle
export all oracle database to a dump file:
-
$ORACLE_HOME/bin/exp / GRANTS=y ROWS=y FILE="exp.dmp exp_1.dmp" FILESIZE=1GB LOG=export.log OWNER="()"
pjdc database
With the new row_number() feature of the MS SQL Server 2005, now it’s very easy to implement pagination: get data rows page by page to avoid the retrieve too much data at same time. The new feature it’s very similar to the Oracle ROWUM.
The prepare statement could be like the follow:
-
SELECT * FROM ( SELECT row_number() OVER (ORDER BY id) AS resultNum, id FROM table_name) AS numberResultsWHERE resultNum BETWEEN ? AND ?
More information here.
Technorati Tags: SQL Server, row_number
pjdc database sql server
Retrieving identity column values in JDBC applications:
You define an identity column in a CREATE TABLE by specifying the IDENTITY clause when you define a column.
This feature is defined in the JDBC, and implmented in the MS Sql Server 2005, not in the older version. For Oracle database this is not implemented, but the common solution of the rownum can be used instead.
1.Set the prepared statement to get the identity column from DB:
or
2. Get the generated values from the statement
-
rs = stmt.getGeneratedKeys();
-
while (rs.next()) {
-
rs.getBigDecimal(1);
-
}
Technorati Tags: ms sql server, jdbc, identity
pjdc database, java jdbc, sql server