Tagged Questions
The data-loading tag has no wiki summary.
3
votes
5answers
658 views
Complex processing in Stored procedures Vs .net application
We are building a new application in .net 3.5 with SQL server database. The database is fairly large having around 60 tables with loads on data. The .net application have functionality to bring data ...
2
votes
2answers
190 views
How can I load an object into a variable name that I specify from an R data file?
When you save a variable in an R data file using save, it is saved under whatever name it had in the session that saved it. When I later go to load it from another session, it is loaded with the same ...
2
votes
2answers
291 views
Best way to store and retrieve a DAWG data structure for fast loading
I have a 500k+ wordlist that I loaded it into a DAWG data structure. My app is for mobile phones. I of course don't want to repeat all the conversion steps to load this wordlist into a DAWG every ...
2
votes
1answer
341 views
Does Pentaho Kettle have a way to accept JMS messages?
Does Pentaho's ETL system, Kettle (http://kettle.pentaho.org/) have a plugin to accept information from JMS messages? I'd like to set up a job that can read messages each containing a hash, extract ...
2
votes
10answers
445 views
What's the fastest way to save data and read it next time in a IPhone App?
I have the following problem:
In my dictionary IPhone app I need to save an array of strings which actually contains about 125.000 distinct words; this transforms in aprox. 3.2Mb of data.
The first ...
1
vote
1answer
200 views
ExtJs loading data
I'm trying to load data from imdb, but i have no results in table (GridPanel).
It's my source code:
...
<body>
<script type="text/javascript">
Ext.onReady(function(){
var store1 = new ...
1
vote
2answers
322 views
Data load to huge partitioned table
I have a huge table. First range partitioned by price_date, then hash partitioned by fund_id. The table has 430 million rows. Every day I have a batch job in which insert 1.5 million to 3 million ...
1
vote
3answers
99 views
Good place for data loading scripts that rely on rails?
In your experience, where is the best place to place scripts that run data loading jobs, but which rely on rails? In my project they are in the model folder, but that adds a lot of code to the model ...
1
vote
2answers
882 views
Asynchronous data loading in Entity-Framework?
Did anyone hear about asynchronous executing of an EF query?
I want my items control to be filled right when the form loads and the user should be able to view the list while the rest of the items ...
1
vote
1answer
2k views
Question about loading data in a Rails migration
I created number of migrations starting with a definition for a Posts table.
class CreatePosts < ActiveRecord::Migration
def self.up
create_table :posts do |t|
t.column "title", ...
0
votes
1answer
25 views
Load data from one oracle db to another oracle db best practices/methods
I wanted to do onetime load from one source Oracle db to destination oracle db.
it can't done direct load /unload or import/export of data as it as different tables structures columns at source and ...
0
votes
0answers
12 views
DB Transactions and data loading
I have a need to import data from several separate text files into a SQL Server 2005 database. The data in each of the text files is related and the combined total size of all text files can reach ...
0
votes
1answer
32 views
Data logic on load using a component - cakePHP
I have a project I'm developing which includes articles that can be commented on (comments stored in separate table of course). I want to perform pre logic on a field from each comment, wherever they ...
0
votes
1answer
51 views
How can I implement (cleanly) caching for EF entity types?
I come up against this over and over again: writing code to create instances of entities (i.e. populate rows into the database) where there are child associations (i.e. FK references) that need to be ...
0
votes
0answers
125 views
Radgridview populates but does not display data
I have a RadGridView that is being populated with a QueryableCollectionView in my MVVM. When it is loaded it does not show any information inside of it, but if I go to the dataPager it shows the ...
0
votes
1answer
382 views
Using SQL Server spatial types in SSIS data load
I am trying to load a file using the SQL Server Import Data function - appending rows to an existing table.
my existing table is created like this:
CREATE TABLE [dbo].[load](
[Long] ...
0
votes
4answers
119 views
Maintain valid records in a table
I have a table which holds flight schedule data. Every schedule have an effective_from & effective_to date. I load this table from flat file which don't provide me an effective_from and ...