Microsoft has posted an update to Windows XP that resolved this problem. They MAY also have updates for other Windows versions (I haven’t checked). Jay
Just subtract one date from the other and the number of days between will be calculated by Oracle. Magic!
Try checking to see if the properties for auto refreshing the data when you open the workbook are set. This can be set to automatically open the required spreadsheet(s)/data file without user intervention. I use this to get data from the web automatically when I launch a workbook for epos data to be collated. I [...]
As far as I know, SQL has no way to subscript your host variable and therefore no way to reference an array element directly. I always move the array element into a work field, execute the SQL statement, and then put the work field back into the array element (if needed).
Think backwards. Leave 8i up as production and progress your changes to the 10g database, using 10g as parallel. Once you are assured that all transactions work, then convert finally to 10g and archive the old 8i database. Do not be too fast to make 10g production. Second question – best practices. Create a test [...]
To get two results back, use two functions, a function that returns a composite object (such as a record), or a procedure with two OUT parameters. — Sheldon Linker (sol@linker.com) Linker Systems, Inc. (www.linkersystems.com) 800-315-1174 (+1-949-552-1904)
As both your source and target data resides on the I-Series you shouldn’t have too much trouble. We have experience of replicating data between i-Series and MS-SQL using a product called Scribe Insight. This allows you to map source files and fields to target files and fields. This mapping process allows you to perform functions [...]
Do it this way: UPDATE amfLibT.morOut a SET opsTC = 40 WHERE opSeq<’0047′ AND opsTC=10 AND wkCtr=’INFO’ AND EXISTS( SELECT 1 FROM amfLibT.momAST b WHERE a.ordNo=b.ordNo AND b.fItem=’300.605.407.8′ AND b.oStat<>10) In some SQLs, instead of (for instance) “morOut a”, you need to code “morOut AS a”. The “1″ is just a place-holder. It doesn’t matter [...]
I got it! Yes, it can be done this way. I finally decided to step through the proc again and my issue was when executing the command I was not properly quoting the variable. My initial presumption based on my research was that I did not need it… but I did. The example below required [...]
Test the scripts in a test environment (wiht small proportionally tables) and turn on the timing session parameter with “set timing on;” or capture the begining and the end of the execution whit a “spool command” or “set serveroutput on 10000; and the dbms_output package.” to printscreen the result.
MAPFLD(@NEW ‘%max(A,B)’)
I would never, under any circumstances, buy equipment that has to sit outside the Firewall. The whole point to Wireless access is security. If you can’t follow standards, you go out of business. Sounds like these chumps need to close shop. There isn’t a single network out there I would risk on such a ridiculous [...]
You need public IP for that SQL server machine if your server is located behide firewall u need to config your firewall to redirect to SQL server machine with specific port that sql server use.
I saw in a posting on a different list that someone has written a plug-in to prevent CSRF or XSRF attacks. Kanatoko wrote: I wrote a small plugin for Guardian@JUMPERZ.NET(OSS WAF) to prevent CSRF attacks. – From Documentation – This plugin detects and prevents CSRF(Cross Site Request Forgery) attacks. This plugin detects CSRF attacks by [...]
You could do it using SQL to create the table. To run an SQL command, e.g. CREATE, from a CL program check out the RUNSQL utility at this link: http://www.as400pro.com/servlet/sql.tipView?key=159&category=SQL All the best Jonathan
The naming convention determines whether slash or dot will be used. Try using a slash instead. — Sheldon Linker (sol@linker.com) Linker Systems, Inc. (www.linkersystems.com) 800-315-1174 (+1-949-552-1904)
The answer is simple. The company who owns the computer has the right to monitor all business conducted on that computer wheather it is business related or not. Most employees think that the pc belongs to them and the have the right to do with it as they please. The pc is there as a [...]
How to handle isolation levels depends on which DBMS you’re using. DB2 most closely matches Cobol’s model. For instance, if you’re using DB2, you can control the level on a statement-by-statement basis, using WITH or FOR. Example: SELECT x FROM y WITH NC; SELECT a FROM b WITH RR; — Sheldon Linker (sol@linker.com) Linker Systems, [...]
This sounds like an ideal case for a Join Logical file. Create a Join Logical file, joining the two files using all the common fields. Define the record format with all the fields that you want to use when you access this Join Logical. Good Luck!
you have to know what kind of database it is so you can pick the correct provider when creating an ODBC data source. Once you create the data source, you can use Access to open up that data source.





