In SPUFI, end each query with a ; select * from tab1;
If you are using Client Access then an Add-In is provided (but must be registered) to upload directly to your iSeries through Excel. To check if it is registered in Excel check Tools->Add-Ins. This will display a window with all installed Add-Ins. Make sure that Client Access Data Transfer is checked. If it is not [...]
It is not trivial to do what you are looking for without buying some kind of adapter. Apart from the IBM products you mentioned, Attunity, Neon, Labrados and iWay come to mind. If you want to write your own,then in a nutshell, you would need to write a TCPIP socket listeners that would receive incoming [...]
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 [...]
I would suggest installaing and using XMITIP. This excellent free tool can be found at http://www.lbdsoftware.com/tcpip.html Hope this helps…
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
Is there a way you could write the value list to a temporary table every time you call the SP? Then you wouldn’t have to pass the value list, but call it in you WHERE clause like: WHERE Field1 in (Select * from table_temp)
Reformat the string to universal date format, i.e. ’20060203′. I’m assuming MS SQL, not sequal!
> 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 [...]
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. [...]
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 [...]
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 [...]
It sounds like the query is not correct. You should query against the base tables and not the view. I expect you are joining the view to some number of tables and returning one or more rows from the child tables resulting in the views rows being returned multiple times. Use Right and Left joins [...]
Many small ISPs use Plesk to manage their user accounts, the default is for the web mail for joeuser@domain.com to be http://webmail.domain.com/ login name joeuser and the password is the same as their POP3 password. That’s what I’d try, anyway
Unless you’ve read some official Oracle document that said it should work, it sounds like they have finally broken the backward compatibility. Perhaps you should consider that you’ve gotten your money’s worth, at this point, and it’s time to upgrade? Seems odd that they’d break it on a minor revision, but it might have been [...]
RDBMS used? version? if that’s using Oracle financials there are partitioning schemes in the Apps that Oracle recommend using because of the way the applications access the data cheers
Try granting select on dba_source.
See this article: http://support.microsoft.com/?id=129397 or just Google “PrtDevMode”
Try this: After you read a record: ADD 1 to WS-RECORDS-READ-COMP DIVIDE 5000 INTO WS-RECORDS-READ-COMP GIVING WS-QUAT REMAINDER WS-REMAINDER IF WS-REMAINDER = 0 MOVE WS-RECORDS-READ-COMP TO WS-RECORDS-READ-DISP DISPLAY WS-RECORDS-READ-DISP ‘RECORDS PROCESSED’ END-IF





