One thing you could try would be to create the indexes after you insert the records. This will speed up the inserts. Depending on the number of records in the tables and the number of indexes on the tables, the index creation process will probably take longer.
No way I’m aware of to directly access MS Access from Oracle. Oracle has the OMWB (Migration Workbench) utility which will help to convert MS Access to Oracle. http://www.oracle.com/technology/oramag/oracle/02-may/o32tools.html Could also use SQL Loader utility or read as External table (9i) after saving MS Access data as delimited text. Also saw this utility that moves [...]
Can you install a Tool (e.g. TOAD) on the End-User’s desktop which they could use to kill their own session through.
By “cold backup” I assume that you’ve shut down the database and used OS commands to copy the datafiles, logfiles, controlfiles, and parameter file(s). Now, if you restore these files to a machine that is running 8.1.7.4, you will in effect have an incomplete upgrade, as 8.1.7.4 has data dictionary changes as well as program [...]
In what context? When googled you get over 1.2 million hits.
Could use Oracle’s Export/Import utility. Tools such as TOAD or HORA will generate this could for you as well.
You failed to state which method you want to use to accomplish this, Maually Get external data. Via a Macro or via visual basic.
Your DBA is right. Additionally, it be wise to invest about twenty dollars on a small Unix shells book. It will give you details of various switches to those commands: ls, mv, du, grep, more, ps, e.t.c. The kill command can be handy at times. ++ Olu
You’ll probably have to ensure that the environment variable is set to search the oracle installation for EXP and IMP. Control Panel, System, then the advanced tab, and environment variables. The system variables PATH would need to have the ‘oracle_bin’ directory. Example, my install is into C:oracleora92bin Add this, and it’ll find the exp and [...]
Q1, Export using statement OWNER=(user1), then import using statement FROMUSER=(user1) and statement TOUSER=(user2). Q2, No need to give authority, as the user1.table1 will become user2.table1. Q3, If OWNER has given grants to their tables, views, etc. then TOUSER would need to do the same if required. Example if user3 has access to user1.table1, they’ll lose [...]
Follow the instructions in ‘Application Developer’s Guide – Fundamentals’, which suggest giving execute privileges on the package to particular users.
I would look into buying a SonicWall router and the necessary licenses. There configurations are very easy to set up and their hardware is very reliable and secure. Adding global VPN clients is very easy as well and the documentation on their website is what I use when setting up the VPNs for our various [...]
Frankly, installing a separate Internet connection for managers only sounds like you’re trying to please management so that they don’t notice that you have a more serious problem. I’m not sure what you mean by “wireless server room”, but it implies that you are running much of your infrastructure over wireless. This is not good [...]
You can try something like this: SELECT Street1||? `||Street2||? `||Intersection address FROM your_table group by Street1||? `||Street2||? `||Intersection
Hi, Just a thought. There are R and P types of constraint. If you use – select a.table_name from user_constraints a where a.constraint_type =’R’ and a.table_name not in (select b.table_name from user_constraints b where b.constraint_type = ‘P’) you might get all lowest child tables.
Hi, The table indexing comes to what columns require index. The where clause in DML statement is the first indicator what column or columns need to be indexed. If you have repeated the same set of columns then you might want to use concatenated index up to 5 columns.
The question of “best” has to do with what fits your larger process and Enterpise Integration architecture as well as with the character of your data warehouse refreshes (e.g., monthly?, nightly?, transaction by transaction?. For example, if for you Business Objects is the center of multiple feeds from diverse systems, maybe you should think about [...]
What OS? If it’s unix, you might consider rsync
I don’t know much about ASE, but from what I know about programming for the web in general and sql, I think you need to declare that inserted is a variable, and if it isn’t, then rather than calling for all the records from inserted, you need to call the records from the table. I [...]
Try this http://www.mlasolutions.com/





