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. Pilly170

    HP EVA Excessive data retry rate

    Hi, I have 2 Eva 4100, in 2 locations, connected on a IP network and over an 100mb fibre connection,the connection is only using a max of 6mb/s. Im getting this error Problem Found: CUST: CA warning: BZ-EVA-01: Excessive data exchange retry rate on the inter site link Any ideas on this...
  2. Pilly170

    Easy one - Insert Problem

    Forget that.... error was the export spec not recognising the BRanch .. THanks for your help
  3. Pilly170

    Easy one - Insert Problem

    I tried but still the same error... Unknown field Branch
  4. Pilly170

    Easy one - Insert Problem

    Hi, I have a sql table with the following fields. ProdNo , Manufacturer , Manufacturer_ProdNo, System_Text1 , Category , Stock , Price and an access table Custno, ProdNo, Price , Branch My function is this, it imports the SQL table into the access table. Function Update_XML_Tables(Custno...
  5. Pilly170

    Import SQL > Table Question

    Think i have it working after the previous help Function Update_XML_Tables(Custno As String, Table As String) Dim XMLupdate As String XMLupdate = "INSERT INTO XML_Upload_Pricelist ([CustNo], [ProdNo], [Price]) " & _ "Select '" & Custno & "' As CustNo, Actebis_ProdNo, Price " & _ "From " &...
  6. Pilly170

    Import SQL > Table Question

    Thats right. then when i move onto the next table, it will do the same. There for i will have 1 table with all the information I need, customer, product, price. for example the table inserting to will contain: Custno Product price 10076 12235 2.99 10076 15547 8.99 10076...
  7. Pilly170

    Import SQL > Table Question

    This is what i have at the moment as a test Function Update_XML_Tables(Custno As String, Table As String) Dim XMLupdate As String XMLupdate = "INSERT INTO XML_Upload_Pricelist ([CustNo], [ProdNo], [Price])Values ('" & Custno & "','Green',2.99)" DoCmd.SetWarnings warningsoff...
  8. Pilly170

    Import SQL > Table Question

    I was going to specify it when calling it eg a macro Runcode FindPrice_Customer ("14427") Where 14427 is variable for the customer I can create the table with the required schema, but i need to add the customer number into every record. so for example the fields are custno,prodno, price...
  9. Pilly170

    email via MS Access issue

    No, its free download... just google it. The code was to put in access. I use a form opening to call it.
  10. Pilly170

    Import SQL > Table Question

    Hi, Can anyone point me in the right direction. I want to write a function that imports 2 fields from a linked SQL table. fields =(ProductNumber, Price) and import it to a access table but insert a field "customer number" which is defined in the Function header eg Function xyz (custno as...
  11. Pilly170

    email via MS Access issue

    I used the ClickYes program, ran it in suspended mode. then when required used the code below on a forms events, which in turn unsuspended it allowing me to send. Option Compare Database Private Declare Function RegisterWindowMessage _ Lib "user32" Alias "RegisterWindowMessageA" _ (ByVal...
  12. Pilly170

    VBA / SQL Problem. Probably very easy...

    The contents. the table name is dealer_(variablename)
  13. Pilly170

    VBA / SQL Problem. Probably very easy...

    Hi, Im trying to make some VBA Sql queries, this below one works ok. Function Delete_Table_Mysql_XYZ() Dim DelMysql As String DelMysql = "DELETE mysql_dealer_10076.*, * from mysql_dealer_10076;" DoCmd.SetWarnings warningsoff DoCmd.RunSQL DelMysql DoCmd.SetWarnings warningson End...
  14. Pilly170

    ODBC Question

    so if i had for example - my server is 192.168.200.6, login is phil password is test. Database is Misdata. So how would my query fit with the code you've given me? and also how do i run it??? Ive seen so many examples but cannot get my head around it.
  15. Pilly170

    Format a field

    I knew it was simple. i been having a mare today. thanks.
  16. Pilly170

    Format a field

    Hi, I have some code that retrieves the date/timestamp of a file and saves it into the variable showfileinfo, any ideas how can i get this formatted into a date/time field.? Function IsFileModifed(filespec) ' This Checks The file as specified in Filespec and checks the modified time then...
  17. Pilly170

    ODBC 3146 runtime error

    I believe i have resolved this. still in testing. I changed the table type to INNO DB, tried again, this time i got a better description of the error within access. Basically the unique index contains duplicate entries. So what i did was to recreate the tables on the MySql with a field which...
  18. Pilly170

    ODBC 3146 runtime error

    i did the log file again and its down to 7mb http://www.philpearce.com/downloads/SQL2.LOG Still cant see any obvious errors.
  19. Pilly170

    ODBC 3146 runtime error

    I did that and now have a 39mb file. Im not sure what im looking for. http://www.philpearce.com/downloads/SQL.LOG If anyone has the time to scan through...
  20. Pilly170

    ODBC 3146 runtime error

    I believe its something server / client based settings, as it only happens if i run the same query again. Works first time, then if i populate the DB again then run the query again within 5mins it gives the error.

Part and Inventory Search

Back
Top