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 strongm 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. bob120579

    Importing html files into SQL

    No, there is no way to get the data at the source, because it was provided to us from an external source. The files are html because they were sent that way as SSRS reports. So just importing them as XML will work? Also, this is just a thought... Instead of parsing, would it work to export...
  2. bob120579

    Importing html files into SQL

    I have html report files (.html) that i need the actual data that resides in the report to store it in SQL to use as relational data. What is the best way that I can import this data from html into a sql table? I have a whole directory of these files. I just manually exported to excel and the...
  3. bob120579

    Comparing fields with LIKE

    How do I compare a field with part of another field? For example I want to know what filenames are included in file path names... If I had a filename (2008file.pst) column in table A and wanted to know if it was included in any records in the path (C:\Folder\2008file.pst) field of table B, how...
  4. bob120579

    System table Documentation

    SQL Server...The tables that I am pulling from are syscolumns, sysobjects, sysindexes, systypes, sysowners...etc.
  5. bob120579

    System table Documentation

    I am trying to create a stored procedure based on looking up information in system tables. I am pulling basic information such as Table name, records, field names, field types etc which is the source of data for an SSRS report. This is currently working fine. There is a request to add fields...
  6. bob120579

    RAM Upgrade

    Are there any considerations or things to set up in SQL Server 2005 when you upgrade the amount of RAM on the server that runs SQL Server? We are upgrading the server from 16 Gigs of RAM to 32. I know if SQL is restarted it should use the maximum amount of memory available in the settings, as...
  7. bob120579

    End of File

    I actually found the answer...here it is in case anyone is interested.... I just altered the Do...Loop statement to: do while x.AtEndOfStream = False
  8. bob120579

    End of File

    I have an ActiveX script where I am reading a text file into a variable through an FSO. I have to loop through to check each record's length. The problem is my condition on the loop when i check for end of file. I know when you use a recordset, you can say when the object eof, but i'm not...
  9. bob120579

    MYSQL5 Backups

    Yes, but I understand the mysqlhotcopy does not work well with InnoDB databases and tables, which is what I have set up.
  10. bob120579

    MYSQL5 Backups

    Has anyone ever had a problem with automated backups from MySQL Adinistrator? I set up an automated backup to run every night and it does not execute. I know I needed to store my username and password for the machine before it let me save the Automated backup plan. Is there a setting that I...
  11. bob120579

    Automated BACKUP

    Towerbase, The problem is when I try to set up the Automatic backup and schedule it, it says that I need to set up my password in some type of file. But it will let me due a manual backup from there. Ideally, I would like to automate it and schedule it on there, so I do not have to run it...
  12. bob120579

    Automated BACKUP

    Anyone have any ideas?????
  13. bob120579

    Automated BACKUP

    What needs to be done to create an automated backup in MySQL Administrator? It prompts me and tells me that a file is needed with the password stored.
  14. bob120579

    Otimization

    I have a MySQl database on the backend of an Access front end where multiple users update client information as calls come into the company. All of the data is now linked into Access from linked tables. The problem is the response time when they are adding records. It's not a heavy volume at...
  15. bob120579

    Optimization

    I have a MySQl database on the backend of an Access front end where multiple users update client information as calls come into the company. All of the data is now linked into Access from linked tables. The problem is the response time when they are adding records. It's not a heavy volume at...
  16. bob120579

    Record Source (MySQL tables)

    Ok, but I have it at home, so it will take a while. But what would make a query not updateable?
  17. bob120579

    Record Source (MySQL tables)

    Yes. they are linked tables from MySQL. They are fully updateable from the Access Database even through action queries. But, it's just when I join them and use that select query as the record source, that it says the Record Set is not updateable.
  18. bob120579

    Record Source (MySQL tables)

    Can you use an Access select query that has two MySQL tables joined as the record source for a form? I know that the tables work, but I am not sure because the query will not work as long as it has MySQL tables in it.
  19. bob120579

    Linked Tables

    I have several linked tables from MySQL in Access. Only two of the tables, which are updated from access show all deleted data in the columns when I open the tables in access. But when I open them in MySQL the data is fine. Anyone have any insight to this? Bob

Part and Inventory Search

Back
Top