You would probably have to place the Access exe’s folder in the machine’s PATH Environment Variable.
This worked but is there an update query that would do the same? begin for rstid in (select distinct mf.mfr_name_id, mf.mfr_code from eqp_mfr_names mf,property p where p.mfrcode = mf.mfr_code) loop update property set mfr_name_id = rstid.MFR_NAME_ID where mfrcode = rstid.mfr_code; end loop; end;
Actually, Oracle has an “INSERT ALL” statement that I believe was added in 9i and is available in 10g (someone please correct this answer if I’m wrong on that!) It’s a pretty powerful statement that allows you to insert into multiple tables at once by performing a select from your temp table of all the [...]
I meant to say Data Corruption has necessitated that we find the above scenario.
If your encryption padds the encrypted value with filler data then yes, the join could fail as the values wouldn’t match. If you aren’t padding the encrypted value then your values should match and you should be able to do the join.
You would either need to setup a new server running SQL 2005, or install a SQL 2005 instance leaving the SQL 2000 instance. Then detach the databases from the SQL 2000 instance and attach them to the SQL 2005 instance. Be sure to do full testing to make sure that there won’t be any issues [...]
Have you called Update on the data adapter? e.g. customersTableAdapter.Update(northwindDataSet.Customers); from msdn
Hi EsJay Journalling the files is a good way to achieve what you want although as an alternative you could look at the use of database triggers. A database trigger can be defined to call a program whenever the physical files are updated (or records created). There are a lot of examples you can find [...]
Hi Colleen. I’m President of GLUGnet.org, the Lansing MI area user group for .Net. We have over 350 developers on our email list that covers essentially the entire central Michigan area. Since the Michigan economy is struggling and jobs are tight, you should get a strong response to a posting at our job website, jobcoin.glugnet.org. [...]
Hi The first thing that springs to mind is to use some Change Management Software to control the modification and logging of source changes, but that may not be an option. Ideas that spring to mind are: a) I don’t know if it’s possible or not, but you could investigate adding a trigger to the [...]
Wow. If you have this spare machine with the capacity to take this history data, you have nothing to loose by restoring the data and verifying if the software will work. If there are no errors when you restore the data, seeing whether the software will run will not hurt anything. I can say, if [...]
The best way to fix this is to load this data into a database (access or other) that all your users can see. Because you can open file: You could dump the info into flat flies and then load these flat flies into the database that all users can access. Drew
In a very real sense, it doesn’t matter as much what position or area you start with as what you do with it. Unless you have the misfortune to get employed by an egotistic micromanager, you’ll always have some latitude in how you perform your duties. Here are some suggestions: - Learn what security-related tasks, [...]
re question 1: if you journal the PF, you can determine what was deleted and restore the data. re both questions: you really need to provide more information if you expect to get a reasonable answer. Try to include OS version, language(s) being used, and if possible samples of code causing the problem. Also, be [...]
look for the option to convert CCSID (it may be on the ODBC data source definition, if not in the Excel query)
So what products have you tried? And did you try a 64bit specific version of said products? Bob
assuming you mean PACKED field First, the “little squares” are the way your application’s display shows an unprintable character (meaning the hex value does not correspond to a known symbol). So somehow, you need to get your application to show you the HEX values for the packed fields. Then it is a matter or reading [...]
are you looking for an SQL statement to embed in RPG? COBOL? JAVA? or for some other SQL based interface?
What exactly are you trying to validate? We do quite a bit of bulk email to student populations, and “a high percentage of blounced emails” is a relative term. It may very well be that your experience with this population is typical/expected.
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 [...]





