|
I need to control the data type when reading XML data in SAS. The XML data are written and accessed using the XML libname engine in SAS.
SAS seems to guess the data type based on the contents of a column: If I write "20081002" to my XML data in a character...
Started by Martin Bøgelund on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
DATA_TYPE_TEST The CONTENTS Procedure Data Set Name MY.DATA_TYPE_TEST Observations Member Type DATA Observations 0 Protection Compressed NO Data Set Type Sorted NO Label Data Representation Default Encoding....
|
|
I hope I am describing my issue enough.. here goes:
I have a YUI data table, get a server side set of records via JSON, and then populates the data.
Users can click on the headers to sort the data in three of the 6 columns, (which are using a custom sort...
Started by bkorte on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
IF....
Method that was NOT displayed in the datatable.
At any time you can go and look at it, and it will be sorted as shown on the screen, but it will have all the data, whether shown or not.
The data is actually stored in the RecordSet.
|
|
I have a large database and want to implement a feature which would allow a user to do a bulk update of information. The user downloads an excel file, makes the changes and the system accepts the excel file.
The user uses a web interface (ASP.NET) to ...
Started by vanslly on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Validate data in the scratch table via a single stored procedure (executing a series of queries your application makes, and avoids holding ....
I've seen used in the past is:
Bulk-load the user's data into a 'scratch' table in the database.
|
Ask your Facebook Friends
|
We have to lookup some data based on three input data fields. The lookup has to be fast. There are only about 20 possible lookup combinations. We've implemented this using a static HashMap instance where we create a key by concatinating the three data...
Started by Marcus on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
As it is not trivial to code this, and I am .
To constant data, you could use Minimal Perfect Hashing .
|
|
I have a bunch of regression test data. Each test is just a list of messages (associative arrays), mapping message field names to values. There's a lot of repetition within this data.
For example
test1 = [ { sender => 'client', msg => '123', arg...
Started by Eric on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Treat your test set as a database table, apply the normalization rules and create equivalent if it can be eliminated; if it ....
You have a relation (your test data set redundancies.
This looks very similar to Database Normalization.
|
|
I added an additional, new DataSet to my report and have been getting this cryptic error ever since.
Started by OMG Ponies on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In this case for my Table to point to the... .
Adding an additional data set reset the DataSetName value to be blank.
Was that when the report had elements setup using the first data set I'd defined when the report was created.
|
|
I have a reasonably large data set and would like to store it in a file rather than a RDBMS.
The main table in the data set is just over 1M rows, 30 columns and about 600Mb in size as a CSV.
I'm considering SQLite. Is SQLite worth investigating for data...
Started by Mark Nold on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
A data set of that size even in an embedded device and sqlite performance was quite reasonable your data..
|
|
What data structure is behind FD_SET and FD_ISSET macro when working with sockets?
Started by Flinkman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is free to use whatever data structure it wants as long as it provides the FD_* macros or functions
Prototypes:
void FD_SET(int fd, fd_set* fdset); int FD_ISSET(int fd, fd_set* fdset);
From sys/select.h
typedef struct fd_....
|
|
I am looking for a way to generate a graph with multiple sets of data on the X-axis, each of which is divided into multiple sets of multiple sets. I basically want to take this graph and place similar graphs side by side with it. I am trying to graph ...
Started by titaniumdecoy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Pretty much like.
I also want to create a multi-colored bar chart but from one set of data.
And matplotlib.
|
|
I'm always looking for large data sets to test various types of programs on. Does anyone have any suggestions?
Started by icco on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
That would give you a pretty much unlimited amount....
You might want to look at generating random data for Fuzz Testing .
But when it's available, the entire English Wikipedia data set with full download.
sets aren't available.
|