0
votes
1answer
23 views

Int to numeric conversion error in SQL Server

I have a question with converting data. I have a select query made in VBA, how can I convert from varchar value column to nvarchar. I get this error: Arithmetic overflow error converting numeric ...
1
vote
1answer
55 views

How to simplify this insert statement

So I'm trying to insert 120 rows into a new table and it keeps throwing "Query too complex" errors at me. It works fine upto 90 rows. This is the query: SQL = "INSERT INTO " & newtable & " ...
0
votes
1answer
17 views

Update Query VBA Access

I am wanting to copy information from the Id column in the Products table to ProductsId column in another table using vba/sql in Microsoft Access. I was just wondering how I would be able to do this. ...
-3
votes
0answers
43 views

Why do languages handle NULL values differently? [closed]

In some languages it is required not to use comparison operator when comparing NULL values. Usually there is a function like isNULL() to check whether a variable is null (equals NULL), and sometimes ...
0
votes
0answers
22 views

access tab control: number and caption of pages depending on table records

Say I've got a table with the following structure: tblAttachments ID | attach_name ----------------- 1 | label 2 | form 3 | stamp I would like to have a tab control within a form that generate ...
0
votes
0answers
33 views

Creating Language Option In Visual Basic For Applicaiton (VBA) in Microssoft Access 2007

I am developing a database application for a client. This application is expected to be used in various offices across the African continent and hence, it is expected that the application will have an ...
-1
votes
0answers
27 views

Could not find installable ISAM query

I came across and issue that it seems very classic, I got a table in an Excel sheet that i want to load into SQL DB,it gave me an error of could not find installable ISAM. I maybe missed something in ...
0
votes
1answer
50 views

Union ALL query failed in VBA but ok in SQL Developer

I have a very long query which contains 10 Union ALL statements, the whole query was fine in Oracle SQL Developer but failed in Excel VBA. I tested the VBA code by removing the Union ALL statements ...
0
votes
1answer
53 views

Need SQL to update table with data from another table (adding another column to one already done)

I recently asked this question below Need SQL to update table with data from another table IF numbers match I have it working but trying to add something else now. I wanted to bring another column ...
0
votes
2answers
81 views

Copy a column from one table into another table

I have tried this with ALTER TABLE to create the column followed by INSERT INTO. This kind of works, except each subsequent column starts after the previous column has ended. I guess this is how ...
1
vote
1answer
52 views

Need SQL to update table with data from another table IF numbers match

I have this function below that is letting user choose excel file and it imports the data into a table(MyTable). Its just a single column excel file. The table it imports into contains 2 ...
0
votes
0answers
53 views

MS-Access SQL / VBA with field > 256 chars

I'm using VBA and Access 2003 and I have the following query to get the full path of a folder (only the IDs, parent IDs and folder names are stored in my table): Table Folder ObjId ParentID Name ...
1
vote
1answer
37 views

Creating a union in access with multiple tables and field on one table being the same as multiple fields on others

Here is my current query Screenshot of my form: SELECT * FROM jdsubs INNER JOIN amipartnumbers ON amipartnumbers.oemitem = jdsubs.oempartnumber WHERE ((([txtEnterNumber]) In ...
0
votes
2answers
57 views

How to create a ODBC connection to SQL Server?

I try to use Access to call a stored procedure in SQL Server. But have trouble to build the ODBC connection, I do not know am I missing something? Or just need do some set in sql site? I have a ...
1
vote
1answer
40 views

excel and sql queries through different subs or functions

I have an excel sheet which i use with an access database. I want to open the database and use different sub routines with different queries. However i don't know hot to publically assign an variable ...
-1
votes
1answer
24 views

How can I sort a query by a subquery field?

The Code below works fine until I try to Order the query by the "Prior_Usage" column I get a syntax error. Any help would be greatly appricated as I have spent hours searching for a solution SELECT ...
0
votes
2answers
35 views

Looping SQL until dependent cell is empty

So far I have this code; i'm trying to loop my sql search as long as the cell I6, the first cell with data (as well as subsequent cells) is not empty. I can't figure out how to make the 'cusip' ...
0
votes
0answers
46 views

How to import data into various cells in Excel for multiple search queries [closed]

I'm fairly new to Excel VBA with SQL, and I have come across this problem: I need to open a database, and pull out 5, 6 piece of information from the database for each set of input parameters (in ...
0
votes
2answers
42 views

MS Access set combobox values from query

I'm working with MS Access. Private Sub Combo0_Change() Dim db As Database Set db = CurrentDb Dim SQL As String SQL = "SELECT album FROM Albums" End Sub I have a query and it ...
-1
votes
0answers
25 views

Date difference between system date and orderdate as well as want to show since how much days particular order is pending in vba or sql

I have one doubt, i want to those order no which is less than system date and want to show which order no is pending from 3 days,4 days as well as..... my query is like. select distinct tddt,bqty ...
0
votes
3answers
79 views

How to 'insert' data into database via VB

Stuggling a bit here. Trying to develop the code to link user input into my database, in the form of a book record. for example the user would be asked to enter their name address etc. But the code I ...
0
votes
1answer
49 views

Access not parsing entire SQL statement

I have a feeling there must be a stupid mistake here that I can't see, but I've been staring at it so long that I'm at a loss. I'm generating an SQL statement via VBA, and I keep getting a weird ...
1
vote
3answers
139 views

Access 2003 VBA: query works when run directly, but run-time error 3061 when run from code?

So I have a relatively simple query that has exactly two parameters, one of which pulls a long from a form and selects only records from a single table, where one field has that value. (It's a table ...
1
vote
1answer
101 views

MS Access Looping a union query through all columns?

Is it possible to simplify the following into a loop? SELECT ID as ColHead, "Field1" AS RowHead, Field1 AS TheVal FROM `master` UNION SELECT ID, "Field2",Field2 FROM `master` UNION SELECT ID, ...
1
vote
1answer
33 views

Query result in a variable

Here's what I'm trying to do. Once the btnDraw is clicked, I want Access to go run the query Test and bring back the results into the string winner. Then display the result in lblWinner. Private ...
0
votes
0answers
53 views

VBA ADODB recordset conversion error when getting recordcount

I have an Access database that has been functional for awhile now. I have a VBA query that creates a connection and populates an ADO recordset from an SQL statement. I use this ADO reocordset to ...
2
votes
2answers
38 views

SQL records updated using VB

I have a VB code that contains the below SQL update: UPDATE table_A SET UPD_FLG = 'N' WHERE UPD_FLG = 'Y' I need to find out the number of rows updated by the above query in a separate ...
0
votes
0answers
25 views

Loop comparing fields in access tables

I have a couple of tables where one table has coordinates and geometry and the other table has coordinates. I need to update the geometry in the second table with the closest coordinates. I believe ...
0
votes
1answer
42 views

Query through VB fails (Infopath and Access)

I am working on an infopath form using MS Access as the database. On the form, I want to check emails for duplicates and I am trying to do this by running an SQL query from within the following VB ...
0
votes
2answers
335 views

Issue with importing SQL Server date datatypes into Excel date formats

I am importing data into Excel from a SQL Server 2012 database. The issue I have is that SQL Server 2012 Date datatype columns are not being recognised consistently in Excel. If I use ADO Recordsets ...
0
votes
1answer
70 views

date conversion SQL-VBA

I am getting data from SQL and pasting it to an excel sheet through VBA. The data comes in format hh:mm:ss and I want excel to realize this is a time variable but that is not the case. Even if I ...
3
votes
1answer
79 views

Updating tables in VBA ACCESS [closed]

i need help solving my problem with vba update statement: In my form i have a click form that when i click it execute this procedure : Dim strSQL As String Dim rst As New ADODB.Recordset strSQL ...
0
votes
2answers
85 views

Access SQL Query to Add or Update Values

I have an Access database that I need to update every week based on a fixed length text file The file contains some new records and some updates. Currently, I am using an ADODB connection to treat ...
0
votes
2answers
48 views

Access VBA - Pass Param to SQL query?

I have created a function in VBA to connect to a web service and retrieve an XML file. I then wanted to parse the XML and import the captured nodes into the SQL database. I have managed to connect to ...
0
votes
0answers
48 views

Create XML Syntax Based on Access VBA Table Input Values

Looking for some help. We have a table that describes input/values that the user will select. The user will input the possible values, then they will be coded in XML based on VBA. I'm in need of ...
1
vote
1answer
56 views

Cannot open database “ABC” requested by the login. The log in failed

I am using the following code to connect to SQL with VBA and getting the error at the title ' Create a connection object. Dim cnPubs As ADODB.Connection Set cnPubs = New ADODB.Connection ...
0
votes
1answer
44 views

VBA: Arthimetic overflow converting int to data type numeric

I am trying to insert data into a temp database in SQL Server 2012. This is my data, and the datatype used: 1234ab nchar(25) NOT NULL primary key 240 smallint 4535ab nchar(10) 04/01/2013 date ...
0
votes
2answers
56 views

How do I write this SQL query in MS Access to

I have a list of records like so ID---EffectiveDate---Rate 1----1/1/2011--------1.2 2----1/1/2012--------1.3 3----1/1/2013--------1.5 4----1/1/2014--------1.2 Given a date parameter, d1, I want to ...
1
vote
1answer
75 views

Access create table vba

The idea is to type in the name of a new table into a form field and click a button to make a table on a remote database with the name the user enters into the field. However, the new table is created ...
2
votes
1answer
48 views

How do I transfer multiple lines of excel data into an access table

Right now I'm looping through each row in my Excel spreadhseet and using an insert query to insert each row into my Access table. It works, but it's slow. How do I make one query to add all the ...
1
vote
1answer
89 views

over flow error ( VBA,excel that inserts data in sql database)

Here is my code in the excel sheet Private Sub btnUpdate_Click() On Error GoTo errH Dim con As New ADODB.Connection Dim rs As New ADODB.Recordset Dim strPath As String Dim ...
0
votes
1answer
58 views

Apply Filter Access 2010 with NULL not working

I have an Access 2010 database that has been migrated from 2003. I have a report that pulls data from a SQL backend and then in the Report_Open event filters that based on a value in a form using the ...
0
votes
2answers
69 views

Counting columns in the same table

I've been trying to develop a cashflow statement in access 2007. This would be so easily done in excel using formulas such as = SUM (B6:M6) / CountIF(B6:M6)>0 but I cant seem to wrap my head ...
1
vote
1answer
105 views

select [combobox value] & “text”

I am trying to build SELECT statement in Access VBA, based on value chosen by user in ComboBox. Example : "SELECT [8_SV_RT] FROM DATA WHERE condition = value I need 8 to be dependent on ComboBox ...
3
votes
1answer
473 views

Using excels named range/ object in a sql string VBScript

( I have edited this questions, see below ) I have searched on here and google but I still cannot solve my issue. I am trying to use an excel's named range equivalent in my .vbs file. This below works ...
1
vote
2answers
271 views

VBA: Import table from Excel into SQL

I am trying to import a data table from excel into SQL Server 2012, using VBA. Preferably with help of a UDF. The excel table looks something like this. TableID 2012 2011 2010 2009 row 1 ...
0
votes
1answer
109 views

Access subform not refreshing displayed records

I have a mainform in access with a subform (continous form mode). The subform's source is a query that has a criteria parameter that gets the values from a combobox in mainform. When I open the ...
0
votes
2answers
131 views

Updating Access Database from Excel Worksheet Data

I extract data from my Access database into an Excel worksheet using a macro. I first open a connection to the database, define my sql statement in a string var and then dump that data in a recordset: ...
1
vote
1answer
106 views

Enter Parameter Value when using SQL in Access VBA

I keep getting an "Enter Parameter Value" input box when I run this code. Private Sub UpdateTables() Dim strSQL As String strSQL = "update tblTest,ImportedTable set ...
0
votes
1answer
26 views

Visual Basic RunSQL Syntax error using Tablesample

I have a form in Microsoft Access that imports records into a table from text files. The original code is this: DoCmd.RunSQL "UPDATE QC_File SET QC_File.ToQC = 'x' " & _ "WHERE (((QC_File.ID) In ...

1 2 3 4 5 13