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: *

  1. HaveTrouble

    Map Drive

    I have an ASP page that allows user to browse to a file on local machine or mapped drive, then open it. If the file is on local c:\, ASP will try to look for the c:\ on server, instead of c:\ on user machine. How can I fix it ?
  2. HaveTrouble

    Global Database

    I've created a view that unions all the invoice table in child's database. However, it doesn't allow me to execute update statement from the view because it contains union operator. What's the most efficient way to update child's database ?
  3. HaveTrouble

    Global Database

    Each customer has one database in my system. Customer can login from a front-end ASP site to view data in their database. Now I want to setup a "super login" who can view the data in all databases. Some of the reports will need to pull the data from multiple databases. What's the best way to...
  4. HaveTrouble

    Image manipulation

    it's required by customer...
  5. HaveTrouble

    Image manipulation

    Would you mind providing some tips on how to create TIFF in VB 6.0 ?
  6. HaveTrouble

    Image manipulation

    Is there a way to create a Tiff image using visual basic 6.0 ? I have a database of sales order information. I want to create an order sheet for each order and save it as tiff image on my server. How can this be done ?
  7. HaveTrouble

    auto-update date/time when row is updated

    Ya, I think I can use that. If I have 2 relational tables - say 1 (master table) store order information such as customer name, address, etc, and another store items ordered. Order number is the key between 2 tables. When items table is updated, I need the timestamp on master table to be...
  8. HaveTrouble

    auto-update date/time when row is updated

    I have a date/time field in one table. Is there a way to make this date/time field auto-updated to current date/time whenever the row is updated ? I have queries everywhere to update this table so change the query to update date/time field is not an option for me. Please help.
  9. HaveTrouble

    Table size limit

    Does it make any difference if the insert statement is inserting data directly into table ? I came across some articles before about insert data into views but can't remember exactly why.
  10. HaveTrouble

    Table size limit

    Is there a limit of how many rows of data can be in a table ? We have a web form with SQL statement to insert data directly to a table. It produces timeout error once a while after table reaches 300,000+ rows. Is it because the table size reaches the limit ?
  11. HaveTrouble

    Form validation

    No. The web app is on our server. All customers are accessing the same web app and that's why our ASP must be able to configure depending on which customer logins at the time.
  12. HaveTrouble

    Form validation

    Is there any sample page that I can refer to using application_onstart() for form validation ?
  13. HaveTrouble

    Form validation

    We only need to make sure the field is filled, does not care the format of the data. However, we need to allow customer to define with fields they want to make mandatory. The only way I can think of is to store the fieldname selected by customer in a table. On page1.asp, build javascript...
  14. HaveTrouble

    Form validation

    What's the best way to do dynamic format validation ? I have an ASP (page1.asp) that can be accessed by multiple clients and a setting page for clients to define which fields on page1.asp is mandatory. What's the best way to do this kind of form validation ?
  15. HaveTrouble

    Call ASP for processing and return value

    I have an ASP page (page1.asp) to gather information to be passed to a 3rd party JSP(process.jsp) page for data processing. 3rd party will return value to my ASP page (page2.asp). Is there a way I can create a DLL to pass all data to page1.asp for formatting and process everything, and then...
  16. HaveTrouble

    SQL event log

    Everytime an SQL statement runs on a table, did SQL log it somewhere ? If yes, how can I view the log ?
  17. HaveTrouble

    SQL performing question

    Stored procedure still needs to have queries in it to pull data, right ? My question is: is it more efficient to create a view so the query will be like "select field1, field2,... from view1 where..." or more efficient to select from base table and join tables I need if there are 50,000 in one...
  18. HaveTrouble

    SQL performing question

    I want to pull a report that will join multiple tables (around 4 tables. some from same database and some from different databases) and perform some simple calculation such as field A * field B. Say there are 50,000 entries in the main table. Which way is the most efficient way to pull report...
  19. HaveTrouble

    include file question

    got it to work. Thanks.
  20. HaveTrouble

    include file question

    Actually, I have 3 invoice.asp - in common\, customer\, vendor\. The one under customer\ and vendor\ includes the one in common\, which contains the form and all invoices fields. The one under customer\ and vendor\ looks like this: <!-- include file="format.asp" --> <!-- include...

Part and Inventory Search

Back
Top