Link to home
Start Free TrialLog in
Avatar of kvilimas
kvilimas

asked on

Editing an SQL Server table in Excel

Hi,

I need to create an excel workbook which would allow to make changes to an sql server table.

I have come along one example on the internet ( see link), but it seems to be uncomplete and the examlpe file stated is not to be found. I wonder if some could help me to make this VBA code operational.

 link to example

Looking forward to an expert assistances.

Sincerely,
Kostas Vilimas
Avatar of arnold
arnold
Flag of United States of America image

Any reason you are not using ssms/e? The same access as you need with excel, you would have with ssms/e.
You could use the query editor to issue the updates.
Youre supposed to build the file yourself.

Its not that hard. There seems to be information missing in:
Now retrieve the primary key information, using SQL Server's table meta data...
But copy text above, and below the box (including the box) and paste to notepad and youll see the complete code.

I e create a excelfile. Add a sheet for a table in your db, press (im on a mac but i think this is the shortcur) ALT+F11 and the vba window shows. In here find the code headings meantioned in the article, and fill in your code. Save both in macro/vba program AND the Excel file (it contains the macro/VBA). And by the way, the language described is VBA for Applications. VBA for Excel, its similar but not the same as regular VBA code.

Try on a simple small testdb. I would only recommend this on fairly small tables since a opening of the worksheet means getting the full table downloaded from SQL.

If it was up to me, I would propose that SSMS or SSMSE would be used instead, in there people could edit the tables, in a program thats designed for this. But thats not really what you asked.

Regards Marten
Avatar of kvilimas
kvilimas

ASKER

where can I find the file you mention?
The file is an Excel file.

I e open Excel, and create a file (save that is).
Then it's CTRL+F11 (perhaps SHIFT+F11 or ALT+f11). And follow instructions.

The user and pwd mentioned is a sql user. If you need a createf user un the desired SQL instance. And it needs access in the database in order to work.

Regards Marten
The GUI went bananas in my Iphone,
If you need a createf user un
Should read
You need to create a user in
yes but there is no file attached to any of your comments.
Do you have Excel, microsoft excel?
Create a new document within there!
but what I was asking for,  to get the working code. Yes, of course I have excel, and can creat a new document and open vba editor. You sugesting me to write this code? What kind of help is that?
You are doing twice the work than is necessary. The generate query and then setup the code to handle the update within excel compared to using SSMS/SSMSE which outputs the data in a similar fashion which I do not understand what is the end goal. Are you planing on distributing or sharing this excel spreadsheet and that is the reason you are looking to make it include code to handle the update?
This further poses an issue dealing with locking/race conditions where two people use the spreadheet and update the same record.
ASKER CERTIFIED SOLUTION
Avatar of Marten Rune
Marten Rune
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Do you need further assistance? Or is the question solved?

Regards Marten