Reading From A Xl Sheet

Jul 17, 2007

Hi All,

I would like to know if i can read data from xl sheet using a stored procedure?

Thanks in advance

vishu

View 17 Replies


ADVERTISEMENT

Problem In Reading Cell Comments From A Excel Sheet Using SSIS

Nov 8, 2006

Hi,

I have created an ssis package, am using Script task to read all the cell values and comments.

In server MS Excel is not installed, so we use regsvr32 to register excel.dll ( also tried with Microsoft.Office.Tools.Excel.dll ), while doing the registration we got error as

"Registration not done, enrty point not found"

Sice the registration is not done we where unable to create the excel object in our script task.

Can anybody give as any clue, all helps are welcome.

Thanks in advance

Ezaz Mohamed

View 3 Replies View Related

Integration Services :: Reading 500 Columns In Excel Sheet Using SSIS

Nov 17, 2010

I have to transform 500 columns from an excel sheet to Sql Server. In Excel 2k3 , I can read a max of 256 columns only.If I use Excel 2k7, then SSIS 2k5 excel source does not support excel 2k7. If I use ole db source then again it can read a max of 256 columns.how can we read 500 columns in excel sheet (Around 10000 rows) efficiently using SSIS 2k5.   

View 12 Replies View Related

Integration Services :: Reading Multiple Excel Sheet With Different Table Schema

Apr 15, 2015

How to read multiple excel sheets in same excel file with different table schema.

Basically need to load data into tables from these excel sheet. 

So I know how to dynamically read multiple excel sheets in same excel file with same table schema and load into one table.

But how to do this dynamically for multiple excel sheet with different table schema and load into different tables?

View 7 Replies View Related

Dropping Excel Sheet

May 14, 2002

I guess nobodys heard of this? I'm using DTS to transform data to Excel spreadsheet. I have a DROP TABLE `data$` then a CREATE TABLE `data$` the old data is cleared but the new data is appended to the blank rows of the old data. So if I had 5 rows before now I have 10. And the new data has 5 blank rows before it.

I've tried deleting the excel file & replacing it with a new one.
I've used the wizard thinking it was me but no good, it still happens.

HELP!

View 1 Replies View Related

Balance Sheet Calculation

Apr 28, 2008

Hello Friends,

I have a doubt regarding balance sheet calculation in my Software. I am using a stored procedure for these calculations. I have some commands for calculation as given below:

/******************************************************************/
DECLARE @car_req FLOAT
DECLARE @amt_gen FLOAT
DECLARE @amt_shp FLOAT
DECLARE @amt_sho FLOAT
DECLARE @bal_gen FLOAT
DECLARE @bal_shp FLOAT
DECLARE @bal_sho FLOAT
DECLARE @tab_id INT

CREATE TABLE #Temp
(
rec_id INT IDENTITY NOT NULL
,cargo_requiredFLOAT
,amount_generalFLOAT
, amount_shipFLOAT
, amount_shoreFLOAT
,balance_generalFLOAT
, balance_shipFLOAT
, balance_shoreFLOAT
)

INSERT INTO #Temp (cargo_required, amount_general, amount_ship, amount_shore)
SELECT 5000, 1500, 1450, 1490
UNION ALL
SELECT 0, 3500, 3500, 3500
UNION ALL
SELECT 7000, 4500, 4550, 4560
UNION ALL
SELECT 0, 2500, 2000, 2000


DECLARE temp_cursor CURSOR FAST_FORWARD FOR
SELECT rec_id, cargo_required, amount_general, amount_ship, amount_shore
FROM #Temp

OPEN temp_cursor

FETCH NEXT FROM temp_cursor
INTO @tab_id, @car_req, @amt_gen, @amt_shp, @amt_sho

WHILE @@FETCH_STATUS = 0
BEGIN
IF (@car_req > 0)
BEGIN
UPDATE #Temp
SET balance_general = @car_req - amount_general
,balance_ship= @car_req - amount_ship
,balance_shore= @car_req - amount_shore
WHERE rec_id = @tab_id
END
ELSE
BEGIN
UPDATE #Temp
SET balance_general = @bal_gen - amount_general
,balance_ship= @bal_shp - amount_ship
,balance_shore= @bal_sho - amount_shore
WHERE rec_id = @tab_id
END

SELECT @bal_gen = balance_general, @bal_shp = balance_ship, @bal_sho = balance_shore
FROM #Temp
WHERE rec_id = @tab_id

FETCH NEXT FROM temp_cursor
INTO @tab_id, @car_req, @amt_gen, @amt_shp, @amt_sho
END

SELECT * FROM #Temp

CLOSE temp_cursor
DEALLOCATE temp_cursor

DROP TABLE #Temp

/***************************************************************/

This is what acutally I am having in my stored procedure except the temporary table. The values which I am inserting here will get from my actual tables. What I need is to calculate balance. If you run this script you can see how the balance is calculating using the cursor.

I want an efficient way to calculate the same. I know cursor is not at all good option in stored procedures. Do you have any Idea to make this script in an efficient and simple way?

Thanks and Regards
Boney

View 2 Replies View Related

Export To Excel Sheet

Sep 12, 2007

I have a table calld studentMaster

I want export this this table to excel sheet.

please help me any one

View 3 Replies View Related

Balance Sheet Calculation

Apr 28, 2008

Hello Friends,

I have a doubt regarding balance sheet calculation in my Software. I am using a stored procedure for these calculations. I have some commands for calculation as given below:DECLARE @bal_gen FLOAT
DECLARE @bal_shp FLOAT
DECLARE @bal_sho FLOAT
DECLARE @tab_id INT

CREATE TABLE #Temp
(
rec_id INT IDENTITY NOT NULL
, cargo_required FLOAT
, amount_general FLOAT
, amount_ship FLOAT
, amount_shore FLOAT
, balance_general FLOAT
, balance_ship FLOAT
, balance_shore FLOAT
)

INSERT INTO #Temp (cargo_required, amount_general, amount_ship, amount_shore)
SELECT 5000, 1500, 1450, 1490
UNION ALL
SELECT 0, 3500, 3500, 3500
UNION ALL
SELECT 7000, 4500, 4550, 4560
UNION ALL
SELECT 0, 2500, 2000, 2000



SELECT @bal_gen=0,@bal_shp=0,@bal_sho=0
SELECT @tab_id=MIN(rec_id)
FROM #Temp

WHILE @tab_id IS NOT NULL
BEGIN
UPDATE #Temp
SET @bal_gen=balance_general =CASE WHEN cargo_required > 0 THEN cargo_required ELSE @bal_gen END - amount_general
, @bal_shp=balance_ship = CASE WHEN cargo_required > 0 THEN cargo_required ELSE @bal_shp END - amount_ship
, @bal_sho=balance_shore = CASE WHEN cargo_required > 0 THEN cargo_required ELSE @bal_sho END - amount_shore
WHERE rec_id = @tab_id

SELECT @tab_id=MIN(rec_id)
FROM #Temp
WHERE rec_id >@tab_id
END

Select * FROM #Temp
This is what acutally I am having in my stored procedure except the temporary table. The values which I am inserting here will get from my actual tables. What I need is to calculate balance. If you run this script you can see how the balance is calculating using the WHILE loop.

I want an efficient way to calculate the same. Is there any way to calculate it without using loop methods.
Thanks and Regards
Boney

View 3 Replies View Related

Read Each Excel Sheet

Nov 2, 2007

Hi,
I have an excel spreadsheet with several sheets.
These sheets get populated with data from an external source database i.e. a third party application.
I would like to create a SSIS package to read the data in each sheet.
Please note that I do know how to create SSIS package to read an excel file with only one sheet.
Is there a functionality in SSIS to loop though each sheet in one excel file?
Thanks

View 1 Replies View Related

Xml Input Using Xml Style Sheet

Jan 21, 2007

Trying to install SQL express but can't. I used the uninstall tool and it keeps hanging up on this error.

I am using XP and IE7.

I have also adjust my security setting to allow cross domains. Short of going and getting another machine I am at a loss.

No beta software is on machine and I also cleaned the registry..



I am not a developer. This looks like an issue all around MS..

View 1 Replies View Related

How To Transfer Data From Spread Sheet

Sep 25, 2001

how to transfer data from Excel spread sheet to table in the data base table..?

View 1 Replies View Related

Table Join Between Excel Sheet And MS-SQL

Oct 13, 2006

My company has recently transitioned to a centralized Oracle database model.
For the sake of security, the "powers that be" have also denied any query ability to any central tables. They refuse to create views or any other open tables for people to query.
Instead, they provide a "tool" which people can use to download data - to Excel Spreadsheets.
In the past, before this "improvement" lots of users in the local plants were able to query the old system to bring data into spreadsheets for reports, analysis, etc.
Now the place is jammed to the hilt with linked spreadsheets - people do their "table joins" with linked cells and Excel VLookups (yuk). This is because the "powers that be" still demand that these reports, analysis, etc. be done.

I am trying to use SQL-DMO to create a table join between one of these Excel Data pulls and a MS SQL Server table in Excel so that I can join without VLookup. IS SQL-DMO the right way to go?

Has anyone done this? I think I am close, but I don't know how to use the SQL-DMO attached Excel table object I've created in a join. I can't see the object in MS Query. I am not adverse to doing the whole thing in VBA...

Here is another question. Most of these Data pulls using the "tool" (ball and chain, boat anchor) are done once a day or once a week. Would a better strategy be to create MS SQL server Tables that are dropped and re-written when the data is pulled into Excel? This would mean that the report worksheet does not have to import the Excel Data pull sheet to MS SQL when it updates its query.

View 7 Replies View Related

Excel Destination Spread Sheet

Dec 10, 2007

Hi,

I've a problem with excel destination spread sheet.I've created a package which pulls the data from sql server and load it into excel sheet.The main thing Ive to do is I've to create different destination tables(work sheets) for different data.i.e.,The source is a sql query which pulls the data in groupwise with group by clause.So,I've to create individual work sheet for each group with that data.How it can be done.Please, advice me.

Thanks in advance.

View 1 Replies View Related

Update Sql Server From Open Sheet

Feb 1, 2008

hi all
any body help me for my problem in my code
i need to update my sql from excel sheet. but my excel sheet must be open all time, coz it connected with server to update value into this excel sheet.

and i put this code in calc event into this excel sheet:

SqlCom.CommandText = "Update DirectMarket Set DirectMarket.StockVolume=T2.Volume, from DirectMarket inner join (Select * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=D: est.xls;HDR=YES','SELECT * FROM [Sheet1$]')) T2 On DirectMarket.StockSymbol = t2.Symbol "

but this code ask me to close excel sheet to complete update data into SQL server.
i cant close file cose it updated all time.

so please i want to know how can i do update data while excel file is open ????

thank u so much for all.

View 2 Replies View Related

Converting SQLTable To Excel Sheet

Mar 27, 2008

I am able to export to excel through a stored procedure.But when iopen it the datetime column and int columns are not getting recognised.

View 2 Replies View Related

Setting The Sheet Names In Excel

Jan 8, 2007

Hi,

I have a main report with some sub reports. I put the sub reports in a rectangle and selected insert page break before on the rectangles.

If I run the main report and then select export to excel the sub reports are called Sheet1, sheet2, sheet3

How can I change those sheet names ?

I tried setting the bookmark, label and tooltip but no luck.

If I only export 1 report, the name of the sheet is the name if the report.

So how can I fix this ?

Constantijn Enders

View 1 Replies View Related

Applying CSS Style Sheet To A Report..

Oct 31, 2007

Hi,
i have created a rdl file with 10 columns.Also i have an aspx page which will list the ten columns. The user can select some columns and on clicking report button report will be generated in PDF format(Using the rdl file).
Now i want to apply style sheet to the report dynamically from aspx page.. how to do that..Help me.
Thanks in advance

View 3 Replies View Related

Transform Data To Excel Sheet Or Xml

Apr 21, 2006

Does SQL 2005 Express have standard functionality on board to export data as an excel sheet? or as XML in a specified format?

View 4 Replies View Related

Specify Excel Sheet As A Configuration Property.

Oct 1, 2006

Hi,

I'm just starting with SSIS and want to create a reusable package which imports from an excel file which can be specified at runtime. I can expose the filename of the excel file as part of the connectionString property but the sheet is the openrowset property which is a custom property and therefore isn't exposed as part of the external configuration. Does this make sense? Is there an easy way to specify the sheet to import at run time?

Regards,
Anthony.

View 9 Replies View Related

How To Assign Values To A Variable From A Xls Sheet?

Sep 28, 2006

I've got this query inside a Sql Task against a Excel connection and I'd like to insert that value into a user variable called "Proyecto". How do I such thing?

select Proyecto from [Carga$]

TIA,

View 1 Replies View Related

Importing Data From Excel Sheet

Oct 19, 2007

i using the select command

select * from [excel sheet name$];

i also using open file dialoug to specify the excel book this book should be pass to the select command at run time
as a parameter

so plz help me with suitable example

View 1 Replies View Related

Could We Change The Excel FileName And Sheet Name

Apr 14, 2008

Hi ,
I am using SQL Server Business Inteligence Developement Studio for SSIS. I want to change the Excel FileName and Sheet name for excel source at the run time. Please suggest me how is it possible.

View 4 Replies View Related

Read The Work Sheet Irrespective Of Its Name

Jan 18, 2008

Hello,

I am writing the Application in VB to Read the excel. My Excel Contains 6 to 7 sheets in it. But the Sheet name changes frequently. As the application reads the sheet automatically so if I want ot read these sheets irrespective of its name the how is it possible in VB?

I am using the ADO Connection to read the Excel File and thats my recquirement.

Regards,
kiran

View 3 Replies View Related

Selecting The First Sheet In An Excelfile When Using For Each Loop

May 31, 2006

I have a For Each Loop which cycles through some Excel files which is delivered to a FTP location.

In the loop the DataFlow Task uses a Excel Connection Manager, in which you have to specify which sheet you want to take the data from.

But what can i do if the sheet name is different from file to file ?

I was thinking about a script task which somehow can read the first sheet in the Excelfile thats found in the Loop -> put it into a variable -> and use that value to build the query in the Excel Source

Anyone got a solution for this problem ?

View 1 Replies View Related

Import Data From Excel Sheet To Sql Database-asp.net 2.0

Jul 5, 2006

In admin tool of my application,i want to give facility  to administrator that he can import data from the Excel Sheet and can insert in sql database. for example...user id and password that from excel sheet to user table in sql database.
how can i do this..please help me. it's urgent.
thanks
raj

View 1 Replies View Related

How To Create A Spread Sheet From A Sql Table Results?

Jul 30, 2007

I have to run a simple query (say select name from table where id = 4) and get those results and make it into a report.  I am not sure I have crystal reports (do I have to install some thing for this?).  So what is the easiest way to create this?  May in in a spread sheet  or some thing like this?  I am so new to SQL Server
Thanks

View 2 Replies View Related

Formatting For Writing My Query To An Excel Sheet

Feb 5, 2004

Hi ,

I am executing my query and writing it to an excel sheet by choosing "query" results to an excel sheet. It does not format them well. I have trimmed my fields too. There are about 10 fields in the database and I need to show them in the excel file all the ten fields adjacent to one another. Is there anyway I can format them other than the programming aspect.

Thanks

View 1 Replies View Related

How To Export Data From DB Table To Excel Sheet

Dec 5, 2005

Hi .,
  Can any one guide me in exporting data from DB table to excel sheet .
 
Thanks,
vijay
 

View 3 Replies View Related

Update Table From Linked Excel Sheet

Mar 20, 2008

I cant seem to reference columns within a linked Excel server
using MS SQL express

Code:

UPDATE dbo.Items
SET CCC=XL_SERVER.CCC
FROM XL_SERVER...sheet1$
WHERE BBB LIKE '7%'

i.e I want to update column CCC in my Items table from an Excel table column CCC where column BBB begins with 7

I have set up XL_SERVER correctly.

Help!

View 3 Replies View Related

Need Some Advise On Loading Data From Excel Sheet

Oct 25, 2005

I insert/update thousands of line items daily to my MS SQL 2k db each day from multiple excel sheets that are uploaded. In Microsoft's infinite wisdom Excel and MS SQL is not "Fully" compatible and some characters throw off the uploads, cause errors in loading, etc. Each Excel sheet has from a few rows up to 50,000 rows or more. We load around 100 of these Excel sheets each day depending on what our users upload.

Our main problem appears to be with "Special Characters", anything that is not a number or letter seems to be an issue in loads. We have written our scripts to ignore a certain set of characters such as #,!, -, ', ", [, ], {, }, +, =, *, %, ~, `, <,>, etc. But we still get errors. This has become a frustrating nightmare. Any help in the right direction would be greatly appreciated.


I have tried ASP scripts, VB created exe's, converting the Excel sheet to a text file, then uploading, and other various means to get this process error free. Some files never have issues loading, some excel files will error out and not at the same point each time. We can run the same file 5 times in a row and it will stop/error at a different point each time without any rhyme or reason.

Now we are not just doing an "Insert", there are several variables that are at work when loading the data, like combining exact items into one row, associating data with ID's in another table, etc. It is not just a simple, take this data and place it here scenerio which makes this a serious headache to figure out how to make this error free and troubleshoot.

Is there some information or a direction I should look to consider a solid solution to importing data from Excel sheets to a MS SQL 2k db? These files are loaded into a specific folder and on upload they are also recorded in a table marked ready for update in the db. Our scheduler runs the exe associated with that users ID and loads their data, overwriting their previous data load, then marks the file as done.

Is there a proven method, some external program that can be used to make this a solid process, or any direction you can provide for me to research?

View 3 Replies View Related

Transfer SQL Data Results To Excel Sheet

May 16, 2007

Code:

-- (1) Number of calls received for each priority of call [for a specified date range]

declare @startdate datetime,
@finishdate datetime

select RM.fldPriorityCode as 'Priority',
count(RM.fldRequestID) as 'Calls'
from tblRequestMaster RM
where RM.fldPriorityCode between 1 and 5
and RM.fldRequestDate between '01-01-2007' and '03-05-2007'
and RM.fldRequestFlag like 'D'
group by RM.fldPriorityCode
union
select
'Total' as 'Priority',
count(RM.fldRequestID) as 'Calls'
from tblRequestMaster RM
where RM.fldPriorityCode between 1 and 5
and RM.fldRequestDate between '01-01-2007' and '03-05-2007'
and RM.fldRequestFlag like 'D'
order by RM.fldPriorityCode asc


Results:

PriorityCalls
120
22912
3152
4571
54
Total3659




I would like to transfer these results to an excel sheet. For instance when the user opens up the excel worksheet and types in for a example a start date: 01-01-2007 and an end date: 03-05-2007 (into textboxes) then clicks a button say called 'Get stats' and then the results appear on the sheet.


How can this be done?

View 1 Replies View Related

Listing In A Sheet All Server Of Netwaor With SQL Installed

Jun 1, 2006

Is possible to fill a sheet with the name of SQL Server in my form network? In effect scan all server in my farm lan and get only the name of SQL Server and put info into a sheet
Tks.

View 2 Replies View Related

Transfer SQL Data Results To Excel Sheet

May 16, 2007

-- (1) Number of calls received for each priority of call [for a specified date range]

declare @startdate datetime,
@finishdate datetime

select RM.fldPriorityCode as 'Priority',
count(RM.fldRequestID) as 'Calls'
from tblRequestMaster RM
where RM.fldPriorityCode between 1 and 5
and RM.fldRequestDate between '01-01-2007' and '03-05-2007'
and RM.fldRequestFlag like 'D'
group by RM.fldPriorityCode
union
select
'Total' as 'Priority',
count(RM.fldRequestID) as 'Calls'
from tblRequestMaster RM
where RM.fldPriorityCode between 1 and 5
and RM.fldRequestDate between '01-01-2007' and '03-05-2007'
and RM.fldRequestFlag like 'D'
order by RM.fldPriorityCode asc


Results:

PriorityCalls
120
22912
3152
4571
54
Total3659


I would like to transfer these results to an excel sheet. For instance when the user opens up the excel worksheet and types in for a example a start date: 01-01-2007 and an end date: 03-05-2007 (into textboxes) then clicks a button say called 'Get stats' and then the results appear on the sheet.


How can this be done?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved