Search results

  1. J

    Code to export each query to separate csv BUT with certain conditions

    Hi, thank you. Can you please provide example - is needed. Best, Jacek
  2. J

    Code to export each query to separate csv BUT with certain conditions

    Hi, thank you. Can you please provide example - is needed. Best, Jacek
  3. J

    Importing unique IDs from CSV

    Ok, so assume that i have second table - t_junction. And in this t_junction i have JunctionID, UniqueID and Atribute. So i have to create relationship from UniqueID in t_OperatingSystems (1) to UniqueID in t_Junction (many) as TEXT fields? So join text fields? Thank you, Jacek
  4. J

    Importing unique IDs from CSV

    Thank you very much arnelgp. uniqueID should have index as unique? So constraint (1 to many) should be from uniqueID field (1) into second table (many) yes? Jacek
  5. J

    Code to export each query to separate csv BUT with certain conditions

    Hi, thanks. Yes i can export specification for each query manually and use it in macro. But i do not want to do this. I want to have full automation here. Maybe there is something like: application.fieldseparator .... Best, Jacek
  6. J

    Importing unique IDs from CSV

    Hi Guys, i have table which is imported from CSV. And i want to use uniqueIDs there for each OperatingSystem which i have there. But rows in CSV can be deleted or added or updated. How the process should look like and temp_table in Access? I should have autonumber Primary Key and additional...
  7. J

    Code to export each query to separate csv BUT with certain conditions

    Hi Guys, i want to export selected queries to separated csv files and do it via VBA. The problem is that my standard settings of Access are: And i have to always go to advance --> and change decimal symbol from ";" to "." and Field delimeter from ";" to ",". Is there any command to do...
  8. J

    Query to create higher or equal matched values

    hi Colin, thanks ! Sorry my tasks changed and i didnt have time for it yet :( I will investigate. Best, Jacek
  9. J

    Query to create higher or equal matched values

    o wow thank you very much! Working like a charm! Jacek
  10. J

    Query to create higher or equal matched values

    ok thank you, i tried with: SELECT TableSource.KeyName, TableSource_1.KeyName FROM TableSource, TableSource AS TableSource_1 WHERE (([TableSource_1].[DiskSize]>[TableSource].[DiskSize])); but it failed. Jacek
  11. J

    Query to create higher or equal matched values

    Hi Guys, i have table like here: So KeyName and DiskSize corresponding. And what i want is to get this table: So for keyName P6-64-Premium_SSD i have 3 keyNames which DiskSizes are bigger or equal: P6-64-Premium_SSD, P20-512-Premium_SSD, P30-1024-Premium_SSD. For P20-512-Premium_SSD we...
  12. J

    Delete duplicates from table based on Find duplicates query

    hi Colin, thank you vey much! And sorry for late answer, i am on road last time. I will investigate solution, is very helpful. Jacek
  13. J

    Delete duplicates from table based on Find duplicates query

    ok thank you very much. I tried to add one additional string columns with MD5 function: https://www.di-mgt.com.au/src/basMD5.bas.html but i can not use having count >1 in find duplicates query... this is your second menthod yes? Ok how can i create the last of each duplicate? How can i do...
  14. J

    Delete duplicates from table based on Find duplicates query

    Thank you Colin, yes i am using your method to avoide duplicates but before i didnt so i have duplicates already. ok but problem with this approach is that i have a lot of fields and index composite key can noe be applied for more than 10 fields yes? Jacek
  15. J

    Delete duplicates from table based on Find duplicates query

    Hi Guys, i created access built-in find duplicates query but i do not know how to delete from my primary table based on that table. Because in Find duplicates query are 2 records but i only should delete 1 of them. Can anybody help? To precise: I have main table with primary key. But in...
  16. J

    Combining tables in one sql instead of 2 in query

    thank you Guys very much, Best, Jacek
  17. J

    Combining tables in one sql instead of 2 in query

    Hi, i am trying to do in one query left join like here: as you can see it will work. Problem is that i have to match not only CustomerTopologyID but also ServerID with ServerIDFK in tblCustomerTopologyServers table. But when i am doing: i am getting error. Please help, Jacek
  18. J

    Importing data from CSV

    ok thank you very much for nice explanation. I will not close the topic because i have to rethink whole idea. Best, Jacek
  19. J

    Importing data from CSV

    thank you CJ_London. Hmm what do you think by lookup for specific row? you mean run insert into queries from link table to access temp Table? Where i can check which records where deleted or added? Jacek
  20. J

    Importing data from CSV

    Hi Guys, i have one big 16 fields table which is imported from csv without any primary key. How to standardize data? How the ideal process should look like (if i do not have PK in source files). I should have multiple tables and load them to access ? And check if records are deleted or...
Back
Top Bottom