Viewing the result of an sql query in excel.
To add to other comments:
I would question the worth of showing the user that much data. Would they
actually look at it all ?
Provide the user some means to filter the results and only display those of
interest. That would greatly simplify you task and provide the user with
<useful data. There is no point in just duplicating such a large dataset
and requiring XL2007 for it to work.
As for updating the data, you can use a database query and set the fresh
period to some suitable period. Whilst I would not advise a 'live" update
(<30 sec), every 5 minutes or so should be OK, depending on amount of data
and network/server speeds.
NickHK
"kjell nilsson" wrote in message
...
Hi I try this Q here instead since i was recommended this:
"Hi Kjell
There used to be a way to dynamically link Excel to databases, but I think
MS had to remove it due to some kind of lawsuit. Best would be to ask this
in
the Excel.programming newsgroup, as the specialists there will know for
sure.
-- Cindy Meister (Word MVP)"
:
My QUESTION:
Hi.
Background:
I have created an add-in for excel that opens a form that lets the user
graphically select what data he wants to view. The result of the input is
formatted as an sql string, and I want to show the result of the query in
an
excel document.
* the result file i quite big. 256*100 000 rows i might add
I am considering the following:
1. Copy data from the Sql server to an Excel sheet. Something like this:
Sheet1.Range("A1").CopyFromRecordset myrecordset
2. Is there a way, programmatically, to let excel directly show the
result
from the sql-query through a "view-connection " to the database? So to say
that Excel always shows what data the sql server contains.
I would prefer the last solution if that is possible.
Or is there any other smart way to do this?
Best Regards Kjell Nilsson
|