About 25,700 results
Open links in new tab
  1. Change data field type using access query - Stack Overflow

    I need to change a single field data type from Long Integer type to Decimal, this is easily done by just using properties or design view. However I want to know if this is possible using a query or …

  2. Can't change data type on MS Access 2007 - Stack Overflow

    Mar 12, 2010 · I have another exact same database but with only 35MB of data inside it and when I change the data type it works fine, but when I try to change data type on big database it gives …

  3. Change a field type programatically using VBA Access 2007

    I have a routine that imports an Excel table, changes several column (field) names, adds an index and several new fields. However, the indexed field imports from Excel as a Double and I would …

  4. MS Access SQL, changing data type - Stack Overflow

    Nov 19, 2015 · I heard that ALTER TABLE can be used to change the data type as well. Would someone be able to give me an example of how to use ALTER TABLE to change a whole …

  5. Forcing a datatype in MS Access make table query

    To get an Access query to create a table with three numeric output fields from input numeric fields, (it kept wanting to make the output fields text fields), had to combine several of the …

  6. Change data type in table due to Disk Space/Memory Error

    Over 385,325 records exists in the table. Attempts at the following links, among other StackOverFlow threads, have failed: Can't change data type on MS Access 2007 Microsoft …

  7. Change datatype when importing Excel file into Access

    7 Is there any way to change the default datatype when importing an Excel file into Access? (I'm using Access 2003, by the way). I know that I sometimes have the freedom to assign any …

  8. Access SQL - ALTER COLUMN to AutoNumber? - Stack Overflow

    Jun 16, 2014 · How can you alter a table in MS Access using SQL to change a data type to AutoNumber? I have tried to following with no success ALTER TABLE PERSON ALTER …

  9. How to change the data type to currency in Access query

    Oct 19, 2017 · You can use Format function to display it correctly: Format([Net Income] * 1.1,"Currency") Normally query used as data source for forms and reports, not directly. So, it …

  10. MS Access Alter Statement: change column data type to DATETIME

    Sep 13, 2013 · 0 I have a column named as recordTime in my Access DB table table1. This column is of TEXT type right now, and most of its value are in format as: yyyy-mm-dd …