Refers generally to the process of moving data from an external source into one's platform, program, or data set.

learn more… | top users | synonyms (1)

0
votes
0answers
4 views

Sqoop import failed, UnsupportedClassVersionError

I was trying to import table from MySQL to HDFS using sqoop. The commandline used is, sqoop import --connect jdbc:mysql://192.168.10.452/qw_key_test --username qw -P --split-by qw_id -m 10 ...
0
votes
4answers
25 views

cleaned project now its broken getting import errors

i cleaned my android project and now im getting this error saying i need to put import android.R; at the top, when i do that it then says that any field isnt visible, for example i have this line of ...
0
votes
0answers
13 views

Oracle 11g XE import

When I upload a *.cvs file into Oracle Express using the data upload tool, the column mapping changes. I have uploaded the same data before, to test things out. I then deleted all the data in the ...
0
votes
1answer
14 views

Import .cvs file to Sqlite in Android

I have a .cvs file and I want to import this file putting into my database in android. Example, the .cvs file: | id | name | dt1 | dt2 | dt3 | | 1 | Paul | 21 | 98 | 91 | | 2 | John | 22 | ...
1
vote
1answer
21 views

Error Importing data into Access from Excel

I have a very large Excel file around 166,000 rows and 356 columns and I am trying to import this file into Access but this is giving me an error that the file is not in the right format. I realized ...
0
votes
0answers
26 views

Import or copy images to -res- folder in Android Studio— how to?

next question... so I can save all my images directly in the res/drawable-xxx folder. But how can I import/copy images to my project from AS? If I drag an drop my images from the Finder (MacOS), the ...
0
votes
0answers
15 views

MYSQL: Load data as CSV issue

Following mysql command doesnt impoirt anything into DB, LOAD DATA INFILE "Database1.csv" REPLACE INTO TABLE business FIELDS TERMINATED BY ',' ESCAPED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES ...
0
votes
0answers
10 views

What are best practices behind importing csv, merging, and creating reports?

Seeing if there is a little insight on integrating vendor reports... What we have going on -we have about 10 different vendors -we download monthly reports from each vendor - mostly csv files - ...
0
votes
1answer
36 views

Python: loading text with 3 columns of data

I have a text file with 3 columns of data I want to plot. from numpy import * import pylab from mpl_toolkits.mplot3d import Axes3D datalist = loadtxt("datagrid.txt") x, t, u = datalist[:, 0, 0], ...
0
votes
0answers
26 views

load swf file from library to stage on button click flash as3

I am building a flash interface for a map that I will eventually put on a website. I have designed a menu button which is just a symbol with an arrow either side. You click the arrow and it cycles to ...
0
votes
0answers
7 views

Convert Timespan data from CSV to KML

Working with GoogleEarth, I am able to import CSV data that contains long, lat, name, etc., but I am unable to get Google Earth Pro to recognize timespan (begin, end) information. I found an online ...
0
votes
2answers
62 views

Add multiple users to multiple groups from one import csv

I am having the toughest time with this. I have a csv with 2 columns, one column is AD group names and one is user account names. I am trying to write a script to read the csv and import the users ...
0
votes
3answers
45 views

import data from excel - . (dot) in column name

Update-------- I am trying to import data from excel sheet. Everything is fine, except, Column name have '.' selectCommand.CommandText = "SELECT Date,[Meter No.] FROM [Advance EDS export$]"; This ...
-1
votes
2answers
28 views

Importing data from xml to database using php loop [closed]

I have problem with importing data from xml to SQL table. The xml look's like this: <MeasuringPoints> <MeasuringPoint ID="BaseStation" LastChange="2013-05-20T12:15:03.837"> ...
1
vote
1answer
18 views

How to import this packages? Relative import in python3.3

I'm trying to make this work on my machine (arch, using gnome 3). I think that the setup went OK (I replaced all the print commands) but when I run chemlab on terminal I get an error telling me that ...
0
votes
1answer
15 views

Magmi Product Attributes

Problem: Imported Attribute Sets not displaying (Using Magmi Import from CSV) I've successfully imported products and defined attribute sets for these products. However, the attribute sets are not ...
0
votes
1answer
19 views

Reading last Row in Excel while importing - SQL Database

i have the following code that imports Excel Data to a table and updates some parameters , however i am unable to read all the rows , only the last row is being read , i want to be able to read all ...
-1
votes
1answer
20 views

Receiving error with decimal data type mySQL [closed]

CREATE TABLE WLPortfolio ( symbolID MEDIUMINT NOT NULL AUTO_INCREMENT, symbol_userID MEDIUMINT NOT NULL, symbol default NULL, holding default NULL, amount decimal(12,2) default ...
0
votes
1answer
26 views

RavenDB and batch API

Hi in my project we are doing an import if lets say products. We will have a web service where we will get maybe 10 calls for one import, so we need to have a transaction that can be over several ...
-1
votes
1answer
45 views

Location of .txt file within an .xls [closed]

Can anybody with Excel knowledge help me? The nomenclature surrounding excel and its macros means I've hit a brick wall investigating this by myself. In the spreadsheet available here ...
0
votes
1answer
40 views

Pygame, importing modules

I'm making some kind of game, but I only managed to complete the start screen. Now I am trying to make the intro of the first level (so a screen with some explanation and a button to continue). This ...
1
vote
2answers
46 views

relative import in Python 3 not working

I have the following directory: mydirectory ├── __init__.py ├── file1.py └── file2.py I have a function f defined in file1.py. If, in file2.py, I do from .file1 import f I get the following ...
0
votes
2answers
24 views

Infinite Loop while importing Excel to SQL

i have this code USE [DATABASE] SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[GetDataExcel] as DECLARE c CURSOR FOR select Box, Code , Validity FROM ...
2
votes
1answer
49 views

static keyword by itself in Java

I know what static is.. Globally. So I was looking through a code, to get better in coding myself. I'm looking through the Minecraft source code, and for those who are interested to look there its in ...
0
votes
1answer
44 views

Magento Image upload using import / export does not work. It upload all the information except images

I have created one product and i want to copy the same product and information for another products where only title will be changed slightly but its picture and other details remains same So i have ...
0
votes
2answers
33 views

Android opencv library reference is not working correctly

At first i would like to say that I am working for 5 hours to solve that problem and I tried really hard to describe it well, if something is not clear please tell me. I have downloaded Tegra ...
1
vote
2answers
52 views

Inserting table in SQL server using Cursor

I am trying to import an excel file to SQL , the file has 3 columns : Box - Code - Validity i am using the following query USE [Libatel] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER ...
0
votes
1answer
20 views

Distinguish between ImportError because of not found module or faulty import in module itself in python?

I have a few modules in python, which are imported dynamicly and all have the same structur (plugin.py, models.py, tests.py, ...). In the managing code i want to import those submodules, but for ...
0
votes
1answer
18 views

How do I install Oauth2 install on windows (multiple errors)

This is my first time playing with python on a computer instead of using online modules. I'm trying to install Oath2 but the web searches I've found have a number of different ways of doing it and ...
0
votes
0answers
11 views

How to Import Orange into Python Site-Package on a MAC

I need to import orange into python on a MAC, i.e. do this: import Orange data=Orange.data.Table ("lenses") print data.domain.features When I tried to easy_install orange, permission to write into ...
0
votes
1answer
36 views

Importing Access query output into Excel using VBA

I am trying to get this code to work, but it doesn't seem to want to pull the string from the getopenfilename command, so I thought I would see if anybody has any ideas on how to reconfigure this code ...
0
votes
1answer
18 views

Postgres COPY FROM csv file- No such file or directory

I'm trying to import a (rather large) .txt file into a table geonames in PostgreSQL 9.1. I'm in the /~ directory of my server, with a file named US.txt placed in that directory. I set the search_path ...
0
votes
1answer
44 views

Java importing packages

I have a program in my desktop that I want to run (structure in the url), but when I do compile, with \code\nlp\assignments\parsing\javac PCFGParserTester.java I get: PCFGParserTester.java:6: error: ...
0
votes
1answer
36 views

eclipse can't import library inner class for android application

I've added a library to my android project by putting .jar file into /libs folder and by adding Project->Properties->Android->Add. The problem is that I can't import one static public inner class. ...
0
votes
0answers
13 views

How can all of the ZBrush Obj files be imported to make a complete model? [closed]

I have a folder for ZBrush containing enough obj files to make a complete model. How do I place all those obj files correctly inside of Zbrush to make the model, as I am only able to import 1 obj ...
0
votes
0answers
20 views

excel import plugin is not working with grails 2.2.1

i want to make use of excel import plugin into my grails project (grails version: 2.2.1) for this i installed both excel-import:1.0.0 and its dependency plugin joda time 1.4 into my project. when ...
0
votes
1answer
19 views

php var_export object - forgot to serialize before storing

I have a project where last developer forgot to serialize objects before storing them into database. Now I have: stdClass::__set_state(array( 'id' => '1', 'name' => 'John', ...
0
votes
0answers
14 views

Unable to Import XML to Excel Causes Excel to Crash

I'm using Office Excel 2007 and attempting to import a rather large XML file into Excel. I have gone through the developer tap to create headings and a map for the import. All of that seems to go ...
0
votes
1answer
19 views

How to deal with null values for some properties with Neo4j batch-import?

I'm trying to import SQL data into my Neo4j graph database with Michael Hunger's batch-import which actually works very well. To import more than one node type I do it like this: How to do an initial ...
1
vote
1answer
21 views

from bs4 import * fails to import the class NavigableStrign under python3

I am reading the "Beautiful Soup 4.0.0 documentation" a link and encountered an import problem: I import everything in bs4 (BeautifulSoup4.0) under python3: from bs4 import * but fail to use ...
2
votes
3answers
502 views

Importing from eclipse to android studio?

I wanted to import some projects from Eclipse to Android Studio, I've already used the option where you export it as a .gradle file and open it in the Studio. But I also tried a method where I create ...
0
votes
0answers
23 views

How to import a site-package from rJython?

I am trying to call some functions in openopt package for Python from R using the rJython package. I have the NumPy, SciPy, and OpenOpt installed for Python 2.7.4 on my 64 bit windows 7. Importing ...
1
vote
1answer
28 views

Append array to existing json file without loading and decoding the hole file

I´m creating a txt file importer using php, wich can be quite large reaching about 150MB in the near future, what i´ve done is divide the import process in a few steps, and in one of them a save the ...
0
votes
1answer
16 views

import csv into mysql using myphpadmin

I am trying to import a csv file into mysql database. The database contains 5 tables. Table 1 has a primary key Table 2 has its own primary and table 1's primary as foreign key Table 3 has its own ...
0
votes
2answers
56 views

Cannot `import static` static inner class?

I have a class A with a static inner class inside it called B: import static A.B.*; class A { static class B { static int x; static int y; } public static void ...
0
votes
0answers
41 views

Import Dump File into Oracle Express 11g ORA-01950

I'm trying to import a some dmp files from a client into a locally installed Oracle Express 11.2g and have been running into some problems. The import command I am using is: imp system/****** ...
0
votes
1answer
41 views

Export large amount of data (20000 rows) from Mysql to excel (with Php)

I want to export large amount of data (20000 rows) from Mysql to excel (with PHP) data comes from two tables. Each record of first table have the ID of second table record. I am using PHPExcel ...
1
vote
0answers
22 views

Viewing a public Calendar in android

I am creating an app and one of the options is that you will be able to open a public google calendar and view it on the phone. The calendar is from a different users google account but it is ...
-1
votes
0answers
11 views

Importing Access VBA not accepting strings for source files [closed]

I have a strange problem with Excel VBA. I have programmed a spreadsheet to pull custom queries from various Access databases. I used the data connection wizard to go through MS Query to obtain the ...
1
vote
1answer
28 views

Bizarre Python Import Issue - Relative Imports of Builtins?

Python 2.7 does something very peculiar when you look at it under the hood for importing within a package. Basically, it is storing relative imports of built-ins (among other things) for reasons that ...

1 2 3 4 5 108