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 TouchToneTommy 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: Phoenix22
  • Content: Threads
  • Order by date
  1. Phoenix22

    Joining Tables on Similar, but not identical, Fields?

    Hi, Is there a way I could join two tables on fields that are similar (i.e. using the "like" operator instead of = ?) I'm trying to join two tables, but due to inconsistent data input, it's not joining many records because there's extra words or extra letters added to the end of the field...
  2. Phoenix22

    SQL Server Error 1326

    Hello, I'm receiving the following error message when trying to create an ODBC data source: Connection failed: SQL State: '01000' SQL Server Error: 1326 [Microsoft][ODBC SQL Server Driver][Named Pipes]Connection Open(CreateFile()). Connection failed: SQL State: '08001' SQL Server Error: 1326...
  3. Phoenix22

    Disk I/O Error - How to Decrease Boot Partition Size?

    Hi, I'm getting an error when re-starting my workstation to complete a software installation: "Disk I/0 Error: Status 00000001 - Windows NT could not start b/c the following file is missing or corrupt: \WINNT\System32\C_1252.nls" I've checked support.microsoft.com, it says the decrease the...
  4. Phoenix22

    Selecting into a Table but Table doesn't Exist?

    Hi, When I have the following SQL statement: SELECT * INTO backup_table FROM orig_table; The statement executes, but I don't see "backup_table" created anywhere, and when I refer to "backup_table" in another separate SQL query, I get an error message saying the table doesn't exist. Does...
  5. Phoenix22

    Removing Commas in Number Formatting?

    Hi, Is there a way I can remove the "," in a column of numbers so that 1,234 would appear in the table as 1234? Thank you in advance.
  6. Phoenix22

    How to Select DateTime data type in Query?

    Hi, How can I write the "where" clause of a query when I want to extract all records with a COST_DATE of 2004-04-13 where COST_DATE is of type datetime? I tried: where COST_DATE like '2004-04-13%' and it doesn't work. Thank you for your time.
  7. Phoenix22

    Table Syntax/Problems in MS Query Analyzer?

    Hi, Do table names have to be prefixed with "dbo." in queries that are written in Query Analyzer? Very often when I execute queries, it complains that the table doesn't exist even though it is part of the DB I am querying. I also mistakenly renamed a table as dbo.dbo.table_name when it...
  8. Phoenix22

    Importing Data from an Excel File Doesn't Work

    Hi, I'm using DTS in Enterprise Manager to import data from an Excel file to a table. When I preview the data I'm importing, the data range is correct. However, when I finish importing, my table is empty. After the actual importing, I get one notification that says the data and table were...
  9. Phoenix22

    Looping Through Tables in Access?

    Hi, Could someone please tell me the VBA code I could use to loop through a series of tables of Access? Thank you in advance for your time and help.
  10. Phoenix22

    Can't Compile a Class that Implements an Interface?

    Hi, I keep getting an error message when I'm compiling a class that implements an interface: ToolV1/Calculator.java [14:1] cannot resolve symbol symbol : class CalculatorInterface location: package ToolV1 The class I'm trying to compile is as follows: *********************** package...
  11. Phoenix22

    Retaining Global Variable Value in Excel 97 Macros

    Hi, Is there a way I could make Excel retain the value of a global variable? I have 3 macros: * macro 1 gets the file name (declared as a global string in the declarations section i.e. Public filename as String) * macro 2 & macro 3 need to use the file name obtained in macro 1, but each...
  12. Phoenix22

    Excel 97 - Access Violation

    Hello, I wrote a macro last week (which worked fine). Now when I run it, I keep getting the "Access violation at 0 x c000005" error message. The code screws up at the following line: ActiveCell.FormulaR1C1 = average_formula I've tried subsituting the above with the below and it...
  13. Phoenix22

    Excel 97 - Changing Source Data of Pivot Table

    Hi, When I'm changing the source data of my pivot table (using the Wizard) and click finish, I get an error message "Pivot Table Cannot Overlap Another Pivot Table", and thus my pivot table does not show the new source data. How could I get rid of this problem? I need the pivot...
  14. Phoenix22

    Protecting Certain Cells in Excel but Enabling Others?

    Hi, I have a worksheet with a pivot table. There is a drop-down select button for the pivot table, where the pivot table contents change depending on my selection. Is there a way I can protect the sheet (i.e. make the other cells locked/unchangeable), but still allow the user to select from...
  15. Phoenix22

    Suppressing Built-In Excel Dialog /Notifcation Boxes?

    Hi, Is there a way to suppress the Excel dialog/notification boxes that pop up asking the user to confirm or accept something (i.e. a box that pops up asking the user if they really want to delete a sheet or enable macros, etc)? I'm writing a macro and would like to avoid having the user...
  16. Phoenix22

    Combo Box Properties on Excel Spreadsheet?

    Hi, I'm making a chart in Excel 97 where one column value must always be selected from a drop-down list. How can I make a drop-down list that automatically resizes with the row height and ensure that only the *value* of the drop down list shows up when I print the spreadsheet (as opposed to...
  17. Phoenix22

    Executing Excel Macro from Access?

    Hi, Is there a way I could execute an Excel Macro by clicking a button on an Access form? Thank you for your time.
  18. Phoenix22

    Getting Rid of Weird Formatting Symbols in Excel?

    Hi, I've exported data from Access to Excel. The data I've exported is from a combo box in Excel, and at the end of each line, there are weird formatting symbols (a black rectangular box). When this text is exported to Excel, weird squares show up at the end of each piece of text, as well...
  19. Phoenix22

    Opening File in Access?

    Hi, I'm trying to automatically open a file in Access using: Application.GetOpenFilename However, it doesn't work; is there another VBA command I could use? Thank you for your time.
  20. Phoenix22

    Copying a Table in Access to MS Excel?

    Hello, Does anyone know how I could use VBA to copy a table (row headings and content) in Access to a spreadsheet to MS Excel? Thank you in advance.

Part and Inventory Search

Back
Top