export

"Mark" svn export with revision

Hi, I'm looking for a solution for the following situation. We're using Subversion, and besides the development enviroment, where we use checkouts, we have a test environment, which is supposed to resemble the production environment as closely as possible. Therefore, we now have it set up so that the environment is updated by using sv...

Subversion: Get all files from a revision

How do I export/get all the files belonging to a revision? For example: On revision 5434 if we have commited 5 files, how do I get all the 5 files on the specified revision? Something like svn export with revision number, but I only want the files that I commited on that revision. Edit: Duplicate of "Subversion: Check out only those ...

Exporting Gridview to Excel in web app

Hopefully you guys can help me out. I tried a lot of different things and cant get this working. I have a gridview as below in a update panel: <asp:UpdatePanel ID="udpReport" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true"> <ContentTemplate> <asp:GridView runat="server" ID="preferenceReport...

Dbunit ant task export: Exclude tables

Is it possible to say dbunit export all tables except the list (I'm using ant for the purpose)? ...

Export to Excel

Hi, I am using SpreadsheetClass to write some data to a excel sheet through c# code. It was working fine. Now it has started giving an error in this line. SpreadsheetClass xlsheet = new SpreadsheetClass(); Eroor is Retrieving the COM class factory for component with CLSID {0002E510-0000-0000-C000-000000000046} failed due to the fo...

Euro sign in PDF output from MS SQL Reporting Services

When I use FormatCurrency() in a report for Microsoft SQL Reporting Services I see a euro sign when I view the report through the report server's web interface in the default output format (or in Excel output) but when I export to PDF the euro sign becomes a small square. How can I get euro signs in my reporting services PDFs? ...

C# - Export ListView to CSV

Is anyone aware of a decent CSV export tool for exporting from a ListView? I'm in a mad rush to get a project update out and feature creep means I don't have time to get this final urgent feature implemented myself. ...

SSRS 2005 PDF Export Issue

Good Afternoon, My report's page size is 8.5" by 11" with .5in margins all around. When I preview the report in BIDS, it renders in portrait. A change to landscape in page setup fixes this. However, when I export to PDF and view it in Acrobat, the last column of my report rolls to page 2. Instead of a 2 page report, I have a 4 page ...

StringDictionary To TextFile

Hi There, I am trying to export a stringdictionary to a text file, it has over one million of records, it takes over 3 minutes to export into a textfile if I use a loop. Is there a way to do that faster? Regards ...

Exporting Data from CRM 4.0 to Excel

What is the best way for a client to export data from CRM 4.0 to Excel? Right now the limit on the number of rows that can be exported is set at 10000? Is there a supported way to increase the limit or is there another way? The client is in a locked down environment so a solution through CRM 4.0 would be ideal. (e.g. export all of th...

Extracting rows from a DB including depedent rows

I'd like to generate insert-strings for a row in my Oracle database including all its dependent rows in other tables (and their dependent rows). Example: CREATE TABLE a ( a_id number PRIMARY KEY, name varchar2(100) ); CREATE TABLE b ( b_id number PRIMARY KEY, a_id number REFERENCES a(a_id) ); When I extract the row from a wit...

How can I import global variables from a base module?

I created a module Foo::Prototype with the global variables $A and $B. I want the package Foo::Bar that uses Foo::Prototype as a base to import the global variable $A and $B. I could not figure how to do that. I understand that using global variables is not a good practice in general, but in this case I want to use them. The code looks...

Convert/Export C# datalist control/(html page) as a pdf

I want create a button option that takes the entire datalist and converts it to a pdf file. As anyone done this in asp.net ? Please can you show an example or direct me in the right way, thanks. God Speed ...

RadGrid export to excel

I have a radgrid that generates columns dynamically based on user input. Once the grid is populated, the user has the option to export to excel or word. However when the user want's to retain the page formatting, no data is getting exported. But if the user then selects to ignore paging, everything works fine. So it seems that if the...

How to export only selected columns to excel in c#?

Hi, I want to export only user selected columns to excel rather than exporting all the columns. Is there any way of achieving this functionality in C#? ...

How to handle line breaks in data for importing with SQL Loader

Hello, I am a front-end developer writing a C# application to export data from an oracle stored procedure into a text file for later importing into a different oracle database. The data will be loaded with SQL Loader (sqlldr) and I am trying to understand that tool's abilities so that I can output the file in a format that will be easy ...

Exporting result of select statement to CSV format in DB2

Is there any way by which we can export the result of a select statment to CSV file, just like in MySQL. MySQL Command; SELECT col1,col2,coln into OUTFILE 'result.csv' FIELDS TERMINATED BY ',' FROM testtable t; ...

Oracle Export Datapump issues

Hi all, I have a problem with import certain specified tables using expdp command in oracle 10g. Here's what i did to set it up: I logged in as sysdba and ran the following commands create or replace directory dumpdir as 'c:\test\'; grant read,write on directory dumpdir to test; Then i went to the command prompt on my windows box a...

Export from Source Safe

Is there a way to export files/folders from Source Safe? (i.e. getting rid of all .scc files, just like SVN export) ...

SSRS 2008 Export Report to Image Only Exports First Page

Ok, so i am working on exporting my SSRS 2008 Reports to an image. What I would like to do is Export each individual page as an image. From my code, I can only get it to export the first page of the report. Any help would greatly be appreciated. Dim warnings As Microsoft.Reporting.WebForms.Warning() Dim streamids As String() ...