The fastest possible way is to use a compiled language, with this logic flow: Have a large, static array of record buffers Open the input as a streamed (Unix or OS/400) or double-buffered (zOS) file. Loop Read a record Leave the loop if EOF Validate the record If passed Store its values into the array [...]
Not easy – screen captures are just that – still pictures. 1 – try ‘Screen Grab Pro’ and capture as many screens as possible during marquee transit. 2 – Macromedia ‘Captivate’ and create a Flash movie. 3 – Streaming video capture to a ‘Windows Media Format’. Good Luck.
You can try this: Select columns from table where numeric value of columncolumn between numeric1 and numeric2 Note: values of numeric1 and numeric2 depend of the type you are using integer, smallint, decimal, etc
I use a seperate access program to update the front ends. The prog has one form with one button on it called “Install Upgrade”. This button then runs VBA code or Queries to update either the FE or BE tables etc. Below is an example of the VBA to add a new field. Function AddNumField() [...]
I believe there is no work around for this 7.3.4 client on win2K. Why you need 7.x old client? if you want to handle OCI with 8i client, you should install 8i client and select custom install.
The follwoing sql will help: select b.username username, c.sid sid, c.owner object_owner, c.object object, b.lockwait, a.sql_text SQL from v$sqltext a, v$session b, v$access c where a.address=b.sql_address and a.hash_value=b.sql_hash_value and b.sid = c.sid and c.owner != ‘SYS’ /
is there a printer font that is missing from the oracle program?
Install 8i first. When you install 10g, it should install into its own home. The main point is that while the 10g client will talk to both 10g and 8i, the 8i won’t necessarily play nice with the 10g.
Hello: The ‘AS SELECT…’ clause should be the last part of the CREATE TABLE … PARTITION. Try this: create table quote_header_test partition by range (ordered_date) partition less_jul2004 values less than (to_date(’01-JUL-2004′,’MON-DD-YYYY’)) as select * from quote_header; Good Luck
In order for you to decide on a Database Software Implementation requires that you fully understand the business needs and what the Database should provide to them. I would recommend that you try to understand the general aspects of business needs before you actually implement a Database Software or Project. Be careful, More functions and [...]
This linke will provide some useful informaton: http://asktom.oracle.com/pls/ask/f?p=4950:8:8488073385483584370::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:8764517459743
Why the complicated join if the carriage return is at the end of the clob just update scbdesc a set a.scbdesc_text_narrative = dbms_lob.substr(a.scbdesc_text_narrative,dbms_lob.length(a.scbdesc_text_narrative )-1 ,1 ) where dbms_lob.substr(a.scbdesc_text_narrative,1,dbms_lob.length(a.scbdesc_text_narrative )-1 ) = chr(10); ********************* NOTE:the dbms_lob.substr parameters are lenght,offset whereas the substr function parameters are offset,length ********************* that’s your problem
> 1) From a comparison perspective, which provides better performance? Comparison > of a number (1,0) or string (Y/N) It won’t make a difference. > 2) Which method takes up less storage? They both take 1 byte. > 3) Results will be mapped into a J2EE data structure supporting a boolean datatype. > Which method [...]
Ive had a similar problem with the 16bit ODBC drivers for SQL server. Thunking will work ok with older releases, but not with newer versions of drivers. In addition, it becomes more and more difficult to get 16bit ODBC to work on Windows XP machines. There is very limited (if any) support for 16bit ODBC [...]
We manage several DBs of the size you are discussing. Although the intel based platforms are OK, for the size and performance you are mentioning for the DW, we run all of ours on Sun systems. We use V880s for this application. A V400 series might do the trick with only 200 to 400 users. [...]
You must run the CATEXP.SQL or CATALOG.SQL script to install the views and give privileages to the EXP_FULL_DATABASE role. I would start with CATEXP.SQL since that seems to be the only thing that doesn’t work. Apparently that got missed in you upgrade. CATALOG.SQL eventually executes CATEXP.SQL after doing many other tasks.
If you are running Crystal Reports client you can export to what they call Record Style (Column with Spaces) format. File — Export — Select the export format. It is worded a little differantly depending on the version of Crystal Reports. Just look for it. This may not be an option depending on how you [...]
It really depends on how you use the data. If there are foreign keys to of from these tables to other tables that he is NOT moving – then you’re going to lose any hope of maintaining integrity. If these tables are frequently accessed in the same session, then you’ll have to switch to db [...]
What was your question?
Unless I misunderstood, it is easy. Just run this job step to rebind all packages in a collection: //BATCHDSN EXEC PGM=IKJEFT1B,PARM=’DSN S(DB2P)’ //SYSTSPRT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSTSIN DD * REBIND PACKAGE(collection.*.(*)) The first * means “all packages”, the second “all versions” within this collection. In fact, you can replace collection by * as [...]





