If speed is not a key issue, then build your boot environment on a CD, and set the machine to boot from that. Kinkos and other places do something similar with their rental machines – although as I recall, they forcibly re-image their machines every night from a network based standard image. Try googling for [...]
Old Oracle syntax: SELECT s.name, ______DECODE(lm.name, _____________NULL, ‘The first hop failed’, ___________________DECODE(L.name, __________________________NULL, ‘Second hop failed’, ________________________________’Success’)) status ___FROM Source s, ______LookupMap lm, ______Lookup L ___WHERE s.name=lm.name(+) AND ______lm.lookupName=L.lookupName(+); New Oracle ANSI syntax: SELECT s.name, ______CASE _________WHEN L.name IS NOT NULL THEN ‘Success’ _________WHEN lm.name IS NOT NULL THEN ‘Second hop failed’ _________ELSE ‘First hop [...]
Hi Rama The short answer is you can’t. The maximum size of a subfile is 9,999 records and that’s imposed by the operating system. The only way to exceed the 9,999 record limit is to use a single page subfile where your program handles the page up and page down. You then need to use [...]
you’ll need to make a copy of the CL that starts at PGMC and continues on.
best is to create a link betwwen c: and S: Is db in archivelogmode? Was db in restricted mode? Did you enter the recovery command ie “recover database;” to actually recover. Initsid.ora locations need changing. Hard to diagnose further. Keep me in the loop please.
Most important, do you have an index on transaction that consists of item, version and lasttran? You need lasttran included to make the index work. I think that’s the problem. What may be beneficial is to create a work file containing the last transaction of each item in the warehouse. Then create an index on [...]
Hi Rama There is no difference between a work file and a physical file, a work file is simply a physical file that is used to store temporary data in. It’s like, for example, the difference between a taxi and a car. When I use a “work file” I tend to copy an empty file [...]
Here’s the SQL to do the comparison and report the results: SELECT * FROM bigFile MINUS SELECT * FROM smallFile You’re on your own for the MS Excel part. — Sheldon Linker (sol@linker.com) Linker Systems, Inc. (www.linkersystems.com) 800-315-1174 (+1-949-552-1904)
This is pretty easy to do in SQL. You can start SQL with STRSQL. The command is: SELECT * FROM biggerTable MINUS SELECT * FROM smallerTable — Sheldon Linker (sol@linker.com) Linker Systems, Inc. (www.linkersystems.com) 800-315-1174 (+1-949-552-1904)
In DB2 or Oracle, use: UPDATE xref a ___SET id1 = ( ______SELECT b.id2 ______FROM xref b ______WHERE b.projId=’AWPE’ AND _________a.id1=b.id1) ___WHERE projId=’MONDPL’; In MS SQL Server, add AS after xref. — Sheldon Linker (sol@linker.com) Linker Systems, Inc. (www.linker.com) 800-315-1174 (+1-949-552-1904)
Try: DSPHDWRSC TYPE(*STG) OUTPUT(*PRINT) Also jsut doing a WRKDSKSTS would show the new drive installed and working but doesn’t show serial numbers
if you’re comparing CSV files, and exporting to excel, why bother with the AS400? I’d use Access, it can open a CSV file, and I think it can save query results as excel. I’m pretty sure there’s a construct to find records that are missing from either file, but, I can’t think of it off [...]
Here are some good places to start: www.sans.org reading room www.cisecurity.org (Center for Internet Security) Bob
Lotus Notes viewa are not same as table structures but you can make them similar to tables. Views are not RBBMS compliant. but these viewa can be exported to tables using odbc connection or Decs or LEI etc..
Please post the full sql statement so I can determine where to put the not exists clause.
I’m probing the deep dark recesses of my increasingly feeble memory, but if it serves me, I think the Windows job scheduler will only run .bat .cmd files.
I would recommend creating a Linked Server to your remote Oracle database from your SQL Server database. Look in BOL and the Net for how to. Here are a couple of links… http://www.informit.com/articles/article.asp?p=21644&rl=1 http://www.sqlservercentral.com/columnists/ksonti/anintroductiontolinkedservers.asp
The first log hasn’t any info about the reason for rejecting message. The second one simply points to companyEmailServer has not an MX record in the Name Server’s domain list. I would try to ping companyEmailServer from the sender’s computer and, if successful, then try to open a telnet session from sender’s computer to company’s. [...]
The command PRTTRGPGM creates a listing of all the trigger programs in the specified library(ies) and the physical files they are attached to. It also creates a member in the file QSECTRGOLD in library QUSRSYS, with the name of the library scanned by the command. You can query this file to find the information you [...]
Did you remember to publish from your local file system to the website and get NO error reports? as for sql2005 you can use msde instead of full blown sql server. Also ensure that your permissions are set properly





