Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
195 views

getting nsstrings into an excel spreadsheet?

Any idea how to go about formatting the data so I can export from my app data in excel format or even a simple table would be okay, how are people getting stuff out of the phone? This particular app ...
1
vote
2answers
431 views

save excel data to couchDB

I'm wondering if there is a tool that will save/push my MS Excel (or OO calc) data to CouchDB database. Googling didn't help a lot so I don't think there is an existing solution for this. Excel -> ...
1
vote
4answers
727 views

SQL Server 2000: How do I export a table's data into INSERT statements?

How can I export a table from a SQL Server 2000 database to a .sql file as a bunch of INSERT INTO statements? One of the fields in the table is a Text datatype and holds HTML so doing this by hand ...
0
votes
0answers
33 views

Error While Exporting Data From MSSQL Server 2008 to MS Excel 2003

I am newbie as far as mssql server is concerned. I have installed MSSQL Server 2008 R2. I am using server SQL Server Management Studio export wizard to export data to ms excel. When i try to ...
0
votes
1answer
26 views

Recommended column delimiter for Click stream data to consumed by SSIS

I am working with some click stream data and i would need to give specifications to the vendor regarding a preferred format to be consumed by SSIS. As its URL data in the text file which column ...
0
votes
1answer
48 views

Google Analytics - Tracking metrics for webpage content using the Data Export API

I'm trying to write a program that will create a report of the page views within a date range for specific webpages within my site. I've been scouring the API help section, but i can't seem to find ...
0
votes
1answer
173 views

How to preserve Identity Specification in SQL Server on Import/Export?

I exported a SQL database from one server to another. Both are running SQL Server Express. However, I noticed that some settings were not preserved. For example, the Identity Specification is set ...
0
votes
1answer
328 views

Big-Data export from Matlab to a .csv file

I need to create a big .csv file with say 200,000+ rows and 7 cols. This fails: a = randn(200000,7) ; xlswrite('hugedata.csv', a) ; ??? Error using ==> xlswrite at 211 Excel returned: Error: ...
0
votes
0answers
236 views

Icefaces 1.8.2 dataexporter not removing temp files after

Using Icefaces 1.8.2 and the dataexporter tag. The export works but it creates "temporary" files in the webapp/export/ folder (which it creates). And it does not remove the files there after the user ...
0
votes
0answers
311 views

Hibernate data export / import for a single tenant

I have posted quite a general question about implementing a multi-tenant solution using very specific technologies in the past. I now have a much more specific question that I was hoping to get some ...
0
votes
2answers
1k views

Export SQL Server 2008 tables to Excel in C#

We currently have a good deal of usage information being tracked in a SQL Server 2008 database. However, it has been decided to not spend the time to develop any sort of UI to interface with this data ...
0
votes
3answers
363 views

SQL Server: export data via SQL query?

I have FK and PK all over my db and table data needs to be specified in a certain order or else I get FK/PK insertion errors. I'm tired of executing the wizard again and again to transfer data one ...
0
votes
2answers
464 views

SQL Server Table Dump - Not All Columns

I'm trying to do an SQL Server dump of a couple of tables in a database (Microsoft SQL Server). We don't have write access to the DB, so we can't do what I was originally thinking (create temp db, ...
-3
votes
1answer
40 views

Java export data to (custom-format) text file [closed]

I was asked to work on this back-end scheduled job that export some customers data (from an e-commerce DB) to a custom-format text file. The code that follows is what I found. I just would like to ...