Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
14answers
13k views

Converting CSV File to XML in Java

Is there an existing application or library in Java which will allow me to take CSV data and create an XML file? The XML tags would be provided through maybe the first row containing column headings.
9
votes
7answers
5k views

Convert 4 bytes to int

I'm reading a binary file like this: InputStream in = new FileInputStream( file ); byte[] buffer = new byte[1024]; while( ( in.read(buffer ) > -1 ) { int a = // ??? } What I want to do it ...
4
votes
4answers
854 views

Matching records based on Person Name

Are there any tools or methods that can be used for matching by a person's name between two different data sources? The systems have no other common information and the names have been entered ...
4
votes
4answers
2k views

Avoiding TSQL Data-conversion errors

I think this is best asked in the form of a simple example. The following chunk of SQL causes a "DB-Library Error:20049 Severity:4 Message:Data-conversion resulted in overflow" message, but how come? ...
2
votes
2answers
52 views

What's a good way to abstract conditional logic for “weird” hard-coded values?

I'm working on a pretty simple problem, with design ramifications. Please bear with me, while I describe the situation in vague terms. I have an entity, call it EntityA: EntityA{ attr1 : type1; ...
2
votes
2answers
56 views

Are non-latin numerals in Windows SBCS codepages used by any Microsoft libraries to represent numerical data in C strings?

I'm trying to write a parser for "text" files which I know will be encoded in one of the Windows single byte code pages. These files contain text representations of basic data types, and the spec I ...
2
votes
0answers
230 views

How to do FLAC or mpeg with python

I'm looking for python code that can convert .wav or other format to FLAC or mpeg. I hope there is one that doesn't depend on other binaries or libraries and just pure python so that it can run ...
2
votes
7answers
304 views

How to convert data into DateTime object

How do I convert a date string, in the general form of "ccyymmdd" in to a DateTime object in C#? For example, how would I convert "20100715" in to a DateTime object. Please - No RTFM links to ...
2
votes
1answer
449 views

Using antlr and the DLR together — AST conversion

I have an AST generated via ANTLR, and I need to convert it to a DLR-compatible one (Expression Trees). However, it would seem that i can't use tree pattern matchers for this as expression trees need ...
2
votes
6answers
942 views

How to output IEEE-754 format integer as a float

I have a unsigned long integer value which represents a float using IEEE-754 format. What is the quickest way of printing it out as a float in C++? I know one way, but am wondering if there is a ...
2
votes
2answers
582 views

SQL Server converting a variable varchar field to money/decimal/something with decimal places

I'm looking for an elegant way to convert a field of type varchar, with variable data in it, to a data type which can be used for mathematical operations sample data from the field (excluding quotes) ...
1
vote
2answers
50 views

SSIS how to convert string (DT_STR) to money (DT_CY) when source has more than 2 decimals

I have a source flat file with values such as 24.209991, but they need to load to SQL Server as type money. In the DTS (which I am converting from), that value comes across as 24.21. How do I ...
1
vote
0answers
77 views

Pro regex converting these impossible-to-regex examples? [closed]

Example of input vulture (wing) tabulations: one leg; two legs; flying father; master; patriarch mat (box) pedistal; blockade; pilar animal belly (oval) old style: naval jackal's belly; jester ...
1
vote
7answers
104 views

use type() information to cast values stored as strings

In my application I have generated a number of values (three columns, of type int, str and datetime, see example below) and these values are stored in a flat file as comma-separated strings. ...
1
vote
0answers
219 views

SSIS Derived Column casting numeric(6,0) to ANSI string drops leading digits

I have a package that's reading a table from an Oracle data source. The surrogate key for the table (an identity column) was assigned a numeric(6,0) data type by SSIS. When I take that column into a ...
1
vote
3answers
336 views

MVVM and Conversion Errors in WPF - Combining ConvertBack Exceptions from View with Validation Errors from Model?

I am developing a WPF application using the MVVM pattern as described by Josh Smith in the article at http://msdn.microsoft.com/en-us/magazine/dd419663.aspx. I can't figure out a good way of reacting ...
1
vote
2answers
590 views

Excel to various JSON objects

I have this Excel table: country year 1 2 3 4 Netherlands 1970 3603 4330 5080 5820 Netherlands 1971 3436 4165 4929 5693 Netherlands 1972 3384 ...
1
vote
3answers
49 views

php-how to conversion Time

How to conversion time with php? the original format like 00:02:34 min I need to get a echo like 154 Thanks.
1
vote
1answer
193 views

Need Help With Google AdWords Conversion Tracking

I am running an AdWords campaign and I am having trouble with the conversion tracking code. Basically, I believe I know what the problem is but just do not know how to fix it. When a user signs up for ...
1
vote
1answer
706 views

How to convert Apache Derby database to MySQL

I would like to convert an existing Derby database to MySQL.
1
vote
2answers
124 views

Convert strings to Java objects automatically

I want to convert user input that comes as Map<String, String[]> to objects in Java. More specically I want to convert the params of a HttpServletRequest to the fields of an arbitrary domain ...
1
vote
2answers
992 views

Problem convert column values from VARCHAR(n) to DECIMAL

I have a SQL Server 2000 database with a column of type VARCHAR(255). All the data is either NULL, or numeric data with up to two points of precision (e.g. '11.85'). I tried to run the following T-SQL ...
1
vote
1answer
60 views

Any one aware of what format the OLD IBM PTS (personal typing system) used

I have been trying to write a program to convert my father's old PTS. I assumed it was standard EBCDIC but when I convert to ASCII I get mostly junk. Any one have any knowledge about PTS?
1
vote
1answer
161 views

Desining a system for mutiple input/multiple output

Background I'm sketching on an application that needs to perform something like this database a >--| |--> fileformat 1 database b >--+--> custom application ...
1
vote
3answers
1k views

c++ server htons to java ntohs client conversion

I am creating a small TFTP client server app where server is developed using c++ and client using java. Here i am sending "block count" value using htons conversion. But i am not able to convert ...
1
vote
2answers
1k views

SQL Server: EDI to XML Data Conversion

I need to do the data conversion from EDI format to XML. is there any step by step tutorial, links about what are the processes on data conversion? How to convert from EDI to XML, step by step guide? ...
1
vote
2answers
267 views

How to replace all non-sequential GUIDs with sequential ones?

I have a brown-field SQL Server 2005 database that uses standard, unsorted GUIDs as the majority of the primary keys values and also in clustered indexes (which is bad for performance). How should I ...
0
votes
3answers
61 views

Insert a PHP false into mysql

My MySQL table contains a tinyint(1) value that i use to store a true or false value. I have the following PHP variables: $name = ''; $description = ''; $active = true; Now my SQL query is as ...
0
votes
0answers
78 views

Transforming database (from EAV to row model)

I need help in writing query to Entity-attribute-value (+change log) database model (copied from JIRA to SQL Server 2008 R2) to convert it to row model. I'm using 4 tables: JiraIssue - issue row ...
0
votes
3answers
97 views

How can I speed up loading data in Oracle tables?

I have some very large tables (to me anyway), as in millions of rows. I am loading them from a legacy system and it is taking forever. Assuming hardware is ok that is fast. How can I speed this up? ...
0
votes
1answer
117 views

strtoul Equivalent in C#

I'm trying to read-in a bunch of unsigned integers from a configuration file into a class. These numbers may be specified in either base-10 (eg: 1234) or in base-16 (eg: 0xAB31). Therefore looking for ...
0
votes
4answers
527 views

Javascript Converting IETF Date to ISO8601 Format

I am using this awesome jQuery calendar plugin http://arshaw.com/fullcalendar/ One of the options for clicking on a date is a callback function to return the date that is clicked on. ...
0
votes
2answers
659 views

Adding ogg vorbis encoding to my project

For my MFC application, I need to convert .wav data in an array into ogg vorbis format. I compiled both libogg and libvorbis as static libraries. I created "bin" directory in my project folder and ...
0
votes
1answer
253 views

Problem encoding wav into ogg vorbis

I have an MFC application. I have audio data stored in wav format. My question is, how can I encode an array of those bytes into an ogg vorbis format? I found an example: ...
0
votes
2answers
314 views

Take a multi-delimited string in MySQL and convert to multiple records

I am converting an old dataset into a newly structured database. Currently they have data in this format: [quantity int]~[var1 string]|[var2 string optional]|[var3 string optional];(etc); ...
0
votes
3answers
329 views

MATLAB: Conversion from char data type to symbolic data type

Does anyone know how to make a conversion from char data type to symbolic data type? I put this: x = 0.49; n = 22; roundn(exp(x*49/200),n) class ans and the answer is: ans = 0 ans = char ...
0
votes
2answers
401 views

Converting troublesome delimited PDF to Excel

I'm trying to convert this delimited PDF to an excel (or some other delimited format). Using Adobe Acrobat 9, I attempt to save it and copy it) as Excel but it gives the error message "BAD PDF; error ...
0
votes
1answer
112 views

best place to get db converted? (SQL Anywhere) [closed]

Need to farm out some work on converting a SQL Anywhere database to SQL Server or Access, what is the best site to get this done?
0
votes
2answers
89 views

Switching from Linq-To-SQL to Entity Framework for WCF Data Services Issue with FK “Properties”

So, In my old Linq-To-SQL I would write code like this var tableItem = new Table { Prop1 = var1 Prop2 = var2, Prop3 = var3, ParentTableID = parentRecordID }; ...
0
votes
3answers
130 views

how to work with strings and integers as bit strings in python?

I'm developing a Genetic Algorithm in python were chromosomes are composed of strings and integers. To apply the genetic operations, I want to convert these groups of integers and strings into bit ...
0
votes
2answers
837 views

Fast conversion from YUY2 to RGB24

I'm writing a program, that will do some transformations with image from a webcam in real-time. As almost all other webcams, my noname gives data in YUY2 format (as written in ...
0
votes
1answer
162 views

SQL server data conversion using Microsoft Sync Framework

We are analyzing Microsoft Sync Framework for syncing the client and server database. The scenario is like this: Server DB hold master data for all projects but the client DB only contains data to a ...
0
votes
6answers
3k views

Reading Paradox Database files

I'm working with a client who has an existing system, built on what is apparently a Paradox database. I've got the database, in the form of a zip file containing .DB, .MB and .PX files, one for each ...
0
votes
2answers
48 views

Oracle: Migrating a col. with values, nulls and 0s

I'm migrating data from one db to another. I have a numeric col. that contains some values, some 0s and some nulls. My gut feeling is to convert all the 0s to NULLs. This will store an optional, ...
0
votes
1answer
242 views

What is the best way to programatically convert a word document with a table structure to XML

So, I have this word document that has a whole bunch of tables some of which are pretty long. It spans many many pages in some cases. I need to programmatically convert this thing to XML. I was ...