Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: intrepidtechie
  • Order by date
  1. intrepidtechie

    asp newbie - registration form

    Hello aaahvaya, Also wanted to mention to you http://4guysfromrolla.com This site would give you lots of information and code snippets. Goodluck
  2. intrepidtechie

    Remote Database Update

    The best simple solution I can suggest is make a copy of the DB on your ISP on your local drive and do all your import work right there on the local machine. Then use any sync software and sync the Db on the local drive with the Db on the ISP. Sync softwares are easy to find. Just check...
  3. intrepidtechie

    asp newbie - registration form

    Helo aaahvaya, I would recommed that you visit http://www.aspin.com This is going to your friend for all your asp tutorial and code needs. You dont have to use the code give on aspin.com but you can sure get an idea to make something on your own. Goodluck...;)
  4. intrepidtechie

    Adding mulitple fields in a query

    I know this sounds really simple but I am a access novice I have a query that is supposed to remove 000s from a column and this is the way it is. UPDATE Table_000 SET account_number = Format(account_number, "#") I want to add one more column name to this query to perform the same function...
  5. intrepidtechie

    How do you trigger a query to run automatically

    Hello MoLaker, I did exactly as you mentioned. Add the code to the VB routine and created a table and wrote the macro. When I ran the Vb routine it went well (I think). Then I opened the db to check if it ran the query. But when I opened the db it gave me a alert "Microsoft Access can't find...
  6. intrepidtechie

    How to run a query based on boolean values - "flag"?

    The Scenario: A VB process runs and updates the MS Access DB with new data everyday. I have created a query to make some changes to the data once its imported. Currently I have to run it manually. Would like to automate the process. Some one suggested this method given below Store a value in a...
  7. intrepidtechie

    How do you trigger a query to run automatically

    Hello MoLaker, I think what you are trying to explain is to keep a boolean value to check if the VB process ran or not. If the Vb runs and updated the DB the set the flag to True and run the query and then reset it back to False after the query has done its work. I got the logic but an example...
  8. intrepidtechie

    Getting a "FRM:99999: A network error occurred" error

    Hello All, I am using Oracle 11.03 based application and when I view some reports I get "FRM:99999: A network error occurred, the client will not be able to continue." error. I resinstalled Jinitiator and JDK files. When I open the link for reports first the screen starts flickering. Then when...
  9. intrepidtechie

    How to use OnTimer Event for Queries

    Thanks PHV, I think this should do the magic for me.
  10. intrepidtechie

    How to use OnTimer Event for Queries

    Hello PHV, Could you suggest a code snippet that can do the Vb routine to launch a query after DB updates
  11. intrepidtechie

    How to use OnTimer Event for Queries

    I am sorry guys this didnt work. Maybe I did it wrong. Can you suggest a simple macro to run a query automatically eachtime the database gets updated. More information. The database gets updated by a VB routine that imports new data everyday morning (like a batch process). The query is written...
  12. intrepidtechie

    How to use Task Scheduler to run a query

    how do I write a macro to call a query and then do the "add the /x macroname switch to the scheduled task command line
  13. intrepidtechie

    How to use Task Scheduler to run a query

    I have a update query that I want to setup to run with a Scheduled Task. Any ideas anyone.!!!
  14. intrepidtechie

    How to use OnTimer Event for Queries

    Could anyone provide an example to use a "OnTimer Event" to run a query.
  15. intrepidtechie

    How do you trigger a query to run automatically

    Hello MoLaker, I have never done this "flag" thing. Could you provide an example maybe.
  16. intrepidtechie

    How do you trigger a query to run automatically

    I would like to run it within Access not in the Vb routine.
  17. intrepidtechie

    How do you trigger a query to run automatically

    I am looking for a method to trigger a query each time the table gets updated. For your information the table is getting updated through a VB data import routine. If you can provide any information on how to make a auto firing query that would be great. Thanks in advance, IntrepidTechie
  18. intrepidtechie

    Queries in Access

    Hello Mordja, I am building this MS Access database based application for a local school which gets its main data everyday from an Oracle DB. The way the Access database gets updated is through to Vb routine. Simple data transfer code moves data from Oracle to Access. There are some calculation...
  19. intrepidtechie

    Queries in Access

    Is it possible that a query can be set to run each time a table gets updated with new data automatically. If yes, then what is the method to do this process
  20. intrepidtechie

    Trim 000s from a table column

    Roy/Mark...you guys have been just awesome. One last question..so if I go according to Mark's syntax my code would be ============================================ " SELECT CPT.CUSTOMER_NAME, format(CPT.ACCOUNT_NBR,'#'), CPT.CUSTOMER_NBR, CPT.CUR_BAL_AMT, CPT.DAY_DELQ_COUNT...

Part and Inventory Search

Back
Top