0
votes
2answers
16 views
mysql import on windows
I have a file, db.sql. I have tried to import it using:
mysql -uroot -p[password] db < db.sql
All I get is a listing of mysql commands, or I get a syntax error. The weird thing …
0
votes
2answers
22 views
How Does SVN Client (Tortoise) and server behave if an import operation is disconnected by the server?
I am attempting to import a very large directory structure to svn with tortoisesvn. The server disconnected about 1.5 Gigs into the operation. Do I simply run the import command a …
1
vote
2answers
35 views
Upload 95Gb csv file into MySQL MyISAM table via Load data infile: CSV engine an alternative?
Hi guys,
I'm trying to upload a 95Gb csv file into a MySQL database (MySQL 5.1.36) via the following command:
CREATE TABLE MOD13Q1 (
rid INT UNSIGNED NOT NULL AUTO_INCREMENT,
gid …
1
vote
3answers
48 views
[Python] ‘import feedparser’ works via SSH, but fails when in browser
I installed feedparser via SSH, using
$ python setup.py install --home=~/httpdocs/python-libraries/feedparser-4.1/
I did that because I don't seem to have permission to properly …
0
votes
3answers
48 views
Most efficient way to import data from one MySQL database to another
I'm writing a PHP script which imports data from tables in two different databases into another one. I've got it working ok with sample data, except now I've moved to using data cl …
0
votes
1answer
34 views
Oracle: how to disable table compression on dmp file import
I have dmp file that was created by EXP utility. The source database has table compression enabled. How can I disable compression while importing dmp file. The destination databa …
1
vote
0answers
18 views
Loading .swc assets into array, in pure Actionscript 3 project
Hello,
I know how to get Flash CS4 symbols into Flash Builder via .swc.
The class names become available in the main class, but I can only instantiate those one by one, writing ea …
6
votes
3answers
161 views
Is `import module` better coding style than `from module import function`?
Let from module import function be called the FMIF coding style.
Let import module be called the IM coding style.
Let from package import module be called the FPIM coding style.
…
2
votes
3answers
67 views
Python: reload component Y imported with ‘from X import Y’?
In Python, once I have imported a module X in an interpreter session using import X, and the module changes on the outside, I can reload the module with reload(X). The changes then …
0
votes
2answers
33 views
Insert xml data into sql tables
I have an xml document with the following format:
<response username="123" customerName="CustomerName" siteName="SiteName" customerID="123" Period="2009">
<topics>
…
0
votes
2answers
28 views
What is the easiest way to import some CSV files with relation to a DB?
I have multiple CSVs. they are all export from a relation DB.
Now each CSV contains thousands of entries, and references to other tables represented by other CSVs file.
how can i …
0
votes
1answer
61 views
How to import existing ROR project ?
Hey,
I'm new to Ruby on Rails (PHP developer here) and I need to edit an existing ROR project. I've been using Aptana Studio for my PHP projects (switched to Zend after Aptana 2.0 …
0
votes
2answers
66 views
Circular #import/@class problem in ObjectiveC
I'm going to use an example to properly illustrate my confusion. I can't quite wrap my head around this.
In Cocoa touch, we have UIViewController and its subclass, UINavigationCon …
0
votes
2answers
93 views
How to Increase the Max Length of the Product Description in Magento (when importing)?
Edit: This was a bogus question. The problem was that I had quotes in my description field. The entire field should be wrapped in one set of quotes with none inside. Changed quotes …
0
votes
3answers
41 views
How to import images into magento using an absolute path?
I tried importing product images into Magento using an absolute path, but it did not work. The image was not uploaded.
For example, I tried importing "http://somewebsite.com/somei …
