Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Currently I have several machines that output data in a CSV file. I'm putting a system in place to import this CSV file into a SQL Server database using SSIS. Once the data resides on the SQL Server I would like to then display the data as a report (preferably SSRS), however the hangup I'm having is my end users then want to modify the data displayed in the report and then re-upload this finished report into the database. Ideally I leave the raw data in its raw format and store any modified data separately. What are some potential methods for accomplishing this?
You could write a custom app instead of SSRS that displays the report in an editable data grid.
You could also create a custom app that lets users import data via excel, so if they export your SSRS report to Excel, they can edit the Excel doc and then upload it to save their changes to your database.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
In a nutshell - i want to take an existing PDF and read just the tool numbers and add barcodes for the tool number to the PDF/Word doc. since word will convert pdf's.
I need some ideas to get data from a PDF which is a printout of an access database.
So we pull up the doc after filling out a few things on the form (access) then we print it. well this database is not available for me to play around with so i wanted to print to a PDF and then read the "TOOL NUMBERS"using TABULA or something similar then export to excel. turn them into either 39extended barcode or QR code. then import into word the original PDF and insert the BAR CODE under the tool number and print. yes crazy as it sounds this is the only work around i can come up with.
i wrote the excel column with tool numbers to QR code (.png's) "toolnumber.png". or is there a way for me to find the MDB file and extract data from that? the column in that datafile should be "ToolNumber".
Since you ultimately want the output in Excel, there's no need to involve Word or PDFs in the process at all - simply query the Access DB directly from Excel and format the output as required.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I am a Quality Analyst. Performing testing on a web application. So in my web application, there is one button of "Import excel". Through which we can import some records of user like Email Id, Mobile No, Name, etc. So as I am a beginner I want test cases scenarios for testing that import excel feature.
You can try out the following scenarios:
Check different file (Other Then Excel)
Small/Large size file
Enter all the records Email id, Mobile, No and name and then leave one row empty and check the behavior of the system.
Make sure that on uploading empty file, error message should be displayed.
Make sure that multiple users can at a time perform the upload process.
Make sure that empty spaces in between the uploaded content is not displayed in the corresponding listing page.
Make sure that on trying to upload already existing data, proper notification message is displayed.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
My company is currently using a custom made erp software.It lacks many features ad no more updates are available. So i thought of moving to Odoo which open and free. So how can i work odoo in existing setup. I need to preserve all my previous data and it should be accessible or visible in odoo also.
Help me with database problems that might arise.
This question is probably too broad, but I'll describe what I did to migrate from LedgerSMB to OpenERP 6 back in the day.
OpenERP can import a CSV file for any of its models. I ended up creating PostGresQL queries to export the LedgerSMB data in an OpenERP form with a lot of translations and case statements to produce CSV files that OpenERP would injest. I ended up doing the chart of accounts by hand, and then wrapped all that in a custom module that I added.
The details will be very dependent on the structure of your existing ERP system, but the general approach of doing the transform in the export is reasonably likely to work.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a DataBase SQL , I did some changes in tables and datatype of this data base
but this data base contains data
I used a select Insert statement from the old database to the new one after edit
Is it the best way to bring he data to the new database or I can use better way ??
It depends why you are doing it and when.
If you are doing this as a one off process on your development machine and there is only a small number of simple tables then this approach will be fine
If you are doing it for a larger number of tables, need it to be re-runnable or want a GUI then use SSIS or "SQL Server Import and Export Wizard". It's easy to use.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm looking to create a program that will sift and sort through tabular data created in excel format. I would like to be able to iterate through several .csv files within a folder, and create dictionaries of information that can be used to generate metrics and reports. I've been developing for a couple of years now, and I've never had to use xcode for anything like this.
I am curious if this is an easy solution to manipulating data or is there a preferred way of dealing with data in this form?
You can use CHCSVParser to read and parse the .csv files.