Wrox Programmer Forums
|
Access Discussion of Microsoft Access database design and programming. See also the forums for Access ASP and Access VBA.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 23rd, 2004, 11:43 AM
bph bph is offline
Friend of Wrox
 
Join Date: Dec 2003
Posts: 102
Thanks: 2
Thanked 0 Times in 0 Posts
Default append query?

This seems like it should be possible, but I can't get it to work.

I have one table in an MSSQL Server database. I have an access front end. I linked the table.

I want to use Access front end append query gui to append data into SQL server table.

I keep failing the connection. Do I need to enter connection string in query properties? If so, how does that look, so I can check with what I have tried?
Thanks, BPH
 
Old November 23rd, 2004, 12:00 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 625
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jemacc
Default

try creating an insert query
 
Code:
INSERT INTO Customers ( CompanyName, ContactName, ContactTitle )
Code:
SELECT Employees.LastName, Employees.FirstName, Employees.Title
FROM Employees
WITH OWNERACCESS OPTION;
Also make sure the linked table are indexed.


Jaime E. Maccou
Applications Analyst
 
Old November 23rd, 2004, 12:44 PM
bph bph is offline
Friend of Wrox
 
Join Date: Dec 2003
Posts: 102
Thanks: 2
Thanked 0 Times in 0 Posts
Default

Jaime,

880 rows currently exist in table. New rows need to be added via the gui window, (user convenience) whereby allowing the entry of 'criteria' under each column name, and finally running and appending to sql side.

I need to keep it real simple for the first part of this project.

Brian






Similar Threads
Thread Thread Starter Forum Replies Last Post
Append Query bright_mulenga Access 1 January 3rd, 2007 01:33 PM
Append Query Cybersurfer Access 1 February 13th, 2006 01:02 PM
Append Query Quandry SerranoG Access 5 November 15th, 2005 06:36 PM
append query stoneman Access 2 November 12th, 2003 09:17 PM
Append query problem vladimir Access VBA 4 July 23rd, 2003 07:58 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.