Data not getting Exporting Excel to SQL server in SSIS and showing no Errors/ Warnings - sql

I'm trying to export Excel data to SQL server in SSIS 2008.
After executing the package, it is not showing any error or warning. But still the data in the excel is not getting exported to SQL server. I also made sure that i saved the workbook.
After creating the source and the connection manager. The preview of the source is empty.
The dataviewers are also not getting shown up.
After executing the package,
These are the execution results
But still the data in the Excel is not getting exported to SQL.

Related

SSAS Tabular expression tables fail to load from SQL Server data source

We have been developing a new SSAS Tabular (1400) model, initially doing the PoC by loading the data directly from SQL Server (not using expressions). Once we had an idea of what we wanted, we refactored and did the data imports with Expressions to allow further Power Query (M) processing. At first, all seemed fine. Along the way we started to mash up other data from an ODBC datasource and didn't experience any issues during the process.
This morning we opened the project to make some modifications before running a new load of data and clicking "process tables" triggered an authentication dialog for the SQL Server data source again and then produced this error for all tables we were importing.
We have tried removing the data source connection string and adding it again. We removed all expressions and tried to start from scratch. No matter what we do, the Expression preview window WILL show the data preview, but attempting to import it into the model then fails with this error.
We've tried this on multiple workstations to try and rule out something with one developers settings that might have changed.
Any thoughts?
After reading this error message again, it struck me that it mentions an ODBC error. The connection to the SQL Server database shouldn't be ODBC so that got me wondering if something was wrong with that connection instead. Sure enough, once I re-authenticated the ODBC data source, the data load worked as expected.
Note that we hadn't actually created a table in the model from the ODBC source yet. Regardless, processing the tables appears to try and validate each connection and rather than more clearly saying that something was wrong with this one data source (even though no data was being pulled into tables), the error dialog made it appear that the import was failing for the SQL Server connection, which is simply wrong.

oracle bi publisher excel template report error- output failed

I am using Oracle BI publisher. I created a Excel template report.
once generating the output for that report, I am not able to view the output in excel format. It throws error when I am opening the excel output file "The file you are trying to open, 'name.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?" if I gave yes for this error, the page is opening with no records of output.
I even tried by generating the XML file and loading that file in the excel template, then view, I am able to see the Output. but when uploading the same excel template in the BI application and view the output, it generates the excel output, but throwing the above error and not able to see the output.
The template which i uploaded has XDO_METADATA worksheet page.
I saved my excel template in excel 97-2003 worksheet in .xls format.
My oracle BI publisher desktop version - 11.1.1.7
Excel version- Microsoft excel 2007
Add-ins in excel- BI Publisher template builder for excel - type COM add-in
solver add-in - type excel add-in
We ran into this problem as well. On occasion it would just happen to one report, we would rebuild the excel template and that seemed to resolve the issue. However recently, our whole catalog was an issue. All the excel reports were getting the error, although they ran previously.
Turns out that the temp file on the application server was full. Our admin cleaned it out and restarted the BI service and that seems to have resolved the issue.

Export database from SQL Server Management Studio

I've managed to 'Restore' my database using the SQL Server Management Studio.
I now need to export that so I can import it into my websites empty database.
I've tried Tasks/Generate Scripts but I can't import the file it generates into my database on my site.
I get the following error message:
Could not find stored procedure 'xxx'
I've also tried to Export Data but I don't appear to get a result at the end of the process. Possibly because I'm using the free version of the software?
Are there any other ways to export this data into a .sql file so I can import it?
I'm just moving a site from one server to another - it shouldn't be this difficult!
Any help would be really appreciated!
Try the Microsoft SQL Server Database Publishing Wizard. Available at:
http://www.microsoft.com/en-us/download/details.aspx?id=5498
Use the generated .SQL file with these steps:
http://www.123-reg.co.uk/support/answers/Databases/Windows-MSSQL/how-do-i-import-export-a-mssql-database-793/
I don't know if you've managed to resolve this but I have found that the SQL file saved from SSMS is in Unicode format and the 123-Reg website is expecting plain text. This is what's causing the "Could not find stored procedure..." error message.
Instead of saving the file, copy and paste the text from SSMS into Notepad, then save that. The file should then upload correctly into the remote database.

sql2005- how to run a saves ssis package?

i used management studio to import data from Excel to a SQL table, and on the final step saved the ssis package to the database.
now i want to re-run the saved package on a new excel file i get as a data dump from another system.
the excel file is identical and only the data changes.
how can i re-run the saved ssis package on the new file?
i am just over-writing the old excel file with the new one and expect the ssis job to just pick up everything and run as it did the first time.
You should be able to run DTExecUI from the command prompt. From here select the server you want to use and the package.

Importing Excel data to a already established SQL DB visual basic

I have developed a program in which all data is entered into a SQL DB. the program has been designed in Visual Studio using Visual Basic. I am now getting external data supplied in an excel format and need to know how to import the excel data into the SQL DB and ensure the data goes into the appropriate columns. I have set a template up for them with standard excel headers and I open and view the data into a datagridview before the import but the last part which is the import function to SQL I have not yet worked out.
Any help would be most appreciative.
Is there a specific problem that you're having?
A better bet might be to use SSIS to import the data. It's what SSIS is made to do.