export

Best way to import/export a Apache Jackrabbit repository

What is the best way to import/export data from a Apache Jackrabbit repository? Right now, I have a website based on a repository with over 100GB data in a server but I frequently need to take a subset of this data in my notebook for in-loco demonstrations. How can I do this in the easiest and fastest way? ...

Exporting MS Access Charts to Word/Excel

I am amazed and dumbfounded to find out that a report generated in Microsoft Access will not include the charts I generated when exporting to Excel, Word or any other technology. Has anyone found a work-around for this? My user base needs to be able to copy/paste the generated reports (including graphics) into different status reports....

Does anyone know any gems/plugins/tutorials related to exporting events to iCal, Google Calendar, Outlook from a Rails application?

I am trying to figure out if there is already a plug in that does the interaction with iCal, Google APIs that I can use or do I need to just get my hands dirty and write it myself. If anyone knows of good resources that I can look at that could help me with the implementation, that would be good as well. I am new to RoR and I have be...

Reporting Services - Rendering to Excel in C# WinForm.

I have a WinForms application that can call for and display a number of reporting services reports. I can call the LocalReport.Render("Excel", null, out mimeType, out encoding, out filenameExtension, out streamids, out warnings); method - writing to a byte[] array, but it throws an exception "The source of the report definition has not b...

Reading and writing XLS files

Im searching for a .Net component to read and write xls files from an application in working on. I dont want use automation with Excel. It should support reading and write Excel 97 and newer versions. And it would be great if its open source or free since its a very low budget project. I have found this one: MyXLS that looks very promi...

File does not begin with '%PDF-'

I am exporting the HTML Content to PDF. System.IO.StringWriter sWriter = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter htmlWriter = new HtmlTextWriter(sWriter); Response.Buffer = true; FormId.RenderControl(htmlWriter); Response.ContentType = "application/pdf"; // Added appropriate headers Response....

Google Bookmark Export date format?

I been working on parsing out bookmarks from an export file generated by google bookmarks. This file contains the following date attributes: ADD_DATE="1231721701079000" ADD_DATE="1227217588219000" These are not standard unix style timestamps. Can someone point me in the right direction here? I'll be parsing them using c# if you are fe...

Dump mysql view as a table with data

Say I have a VIEW on my database, and I want to send a file to someone to create that views output as a real TABLE on their database. mysqldump of course only exports the 'create view...' statement (well ok it includes the create table, but no data) What I have done is simply duplicate the view as a real table and dump that. But for a...

Export PDF pages to a series of images in Java

I need to export the pages of an arbitrary PDF document into a series of individual images in jpeg/png/etc format. I need to do this in in Java. Although I do know about iText, PDFBox and various other java pdf libraries, I am hoping for a pointer to some working example, or some how-to. Thanks. ...

In Access 2007 CSV Export: Disable Scientific Notation.

When exporting a CSV from Access 2007, it automatically converts decimals into scientific notation. Unfortunately the tool that receives them treats these fields as text, and displays them as is. The values being exported are from a query being run against some Excel linked tables, and they appear perfectly in the query view. Is there...

how save SQL stored prodecures to .sql files via batch

Hello! I woud like to save my MS SQL Server 2005 stored procedures to .sql files automatically (would prefer a tool which I can call via .bat) so I dont have to click each single sproc manually and save it. I have already found SMOscript from devio IT, but it gathers all tables and sproc which takes some time. Is there any similar tool ...

Export object collection to XML file

Using C#...I have a small app that creates objects from a class, and adds them to an object collection and it does some UI stuff along the way to display certain values from the currently selected object in the collection (Using WPF UI). So I want to add the ability to let the user save his object collection to a file, so they can load i...

Build Visual Studio Projects from Jamfiles?

Anyone know of a way to create Visual Studio Projects from a build based on Jamfiles? I'd settle for a jamfile -> XML-or-some-other-intermediate-format exporter tool, so I could write my own. ...

What are the best practices when batch exporting from an application following DDD

Let say you hav a database with alot of products/customers/orders and the codebase (java/c#) contains all the business logic. During the night several batches are needed to export data to flat-files and then ftp them to properitary systems. how should we do this "write-database-into-a-flat-file? what are the best-practices? Some though...

How to export revision history from mercurial or git to cvs?

I'm going to be working with other people on code from a project that uses cvs. We want to use a distributed vcs to make our work and when we finish or maybe every once in a while we want to commit our code and all of our revision history to cvs. We don't have write access to the project's cvs repo so we can't commit very frequently. Wha...

Export from HTML to PDF (C#)

Hi, In our applications we make html documents as reports and exports. But now our customer wants a button that saves that document on their pc. The problem is that the document includes images. You can create a word document with the following code: private void WriteWordDoc(string docName) { Response.Buffer = true; Response.Content...

How can I easily generate a Perl function depending on name of the importing class ?

I want to export a function which depends on name of class where is exported into. I thought that it should be easy with Sub::Exporter but unfortunately the into key is not passed to generators. I have ended up with those ugly example code: use strict; use warnings; package MyLog; use Log::Log4perl qw(:easy get_logger); use Sub::Expo...

SVN Export with revision history problem

I need to provide our clients with a dump of a single sub directory in our SVN repository along with the revision history if possible. I know that you can do a dump but I don't believe you can tell it to isolate a single sub directory in the repo. If I export i'll only get the head or a single revision, this is not what I need. Is there ...

iPhone - Importing/Exporting App data?

iPhone apps are great for managing or viewing small elements of data however doing mass and/or long data entry or typing is a pain. For apps that need to have longer dynamic data that can be used on the iPhone but more easily created at the desktop, what sort of options exist for getting data from the desktop to the iPhone app? Are web...

Matrix Munging (with import and export to CSV file)

Here's a (simplification of a) task I do a lot: 1) Import a CSV file like the following: 1, cat, 10, junk 2, dog, 20, junk 3, mouse, 30, junk 2) Remove the fourth column and replace it with twice the third column. 3) Insert a new column that is half the third column. 4) Export to to CSV, ie: 1, cat, 5, 10, 20 ...