active questions tagged import - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:16:53Zhttp://stackoverflow.com/feeds/tag/importhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1935886/flex-ai-import-flash0flex , ai,import,flashmsaif2009-12-20T13:53:47Z2009-12-23T05:08:30Z
<p>can i import vector graphics file *.ai file(illustrator generated) into flex3 ??</p>
http://stackoverflow.com/questions/1158108/python-importing-a-file-that-is-a-symbolic-link1python - Importing a file that is a symbolic link leela2009-07-21T09:15:35Z2009-12-22T19:54:49Z
<p>Hi,</p>
<p>If I have files x.py and y.py . And y.py is the link(symbolic or hard) of x.py .</p>
<p>If I import both the modules in my script. Will it import it once or it assumes both are different files and import it twice.</p>
<p>What it does exactly?</p>
http://stackoverflow.com/questions/1930982/when-should-i-call-savechanges-when-creating-1000s-of-entity-framework-objects1When should I call SaveChanges() when creating 1000's of Entity Framework objects? (like during an import)SkippyFire2009-12-18T22:14:26Z2009-12-21T22:19:08Z
<p>I am running an import that will have 1000's of records on each run. Just looking for some confirmation on my assumptions:</p>
<p>Which of these makes the most sense:</p>
<ol>
<li>Run <code>SaveChanges()</code> every <code>AddToClassName()</code> call.</li>
<li>Run <code>SaveChanges()</code> every <em>n</em> number of <code>AddToClassName()</code> calls.</li>
<li>Run <code>SaveChanges()</code> after <em>all</em> of the <code>AddToClassName()</code> calls.</li>
</ol>
<p>The first option is probably slow right? Since it will need to analyze the EF objects in memory, generate SQL, etc.</p>
<p>I assume that the second option is the best of both worlds, since we can wrap a try catch around that <code>SaveChanges()</code> call, and only lose <em>n</em> number of records at a time, if one of them fails. Maybe store each batch in an List<>. If the <code>SaveChanges()</code> call succeeds, get rid of the list. If it fails, log the items.</p>
<p>The last option would probably end up being very slow as well, since every single EF object would have to be in memory until <code>SaveChanges()</code> is called. And if the save failed nothing would be committed, right?</p>
http://stackoverflow.com/questions/1939622/dynamically-import-class-by-name-for-static-access0Dynamically import class by name for static accessdesolat2009-12-21T11:39:14Z2009-12-21T12:39:40Z
<p>I am generating class names dynamically and then want to import that class by its name to access a static method.</p>
<p>This is the class to import in "the_module.py":</p>
<pre><code>class ToImport(object):
@classmethod
def initialize(cls, parameter):
print parameter
</code></pre>
<p>According to a <a href="http://www.bensnider.com/?p=20" rel="nofollow">Blog post</a> this is as far as I came:</p>
<pre><code>theModule = __import__("the_module")
toImport = getattr(theModule, "ToImport")
toImport.initialize("parameter")
</code></pre>
<p>But the blog example seems to be incomplete as it gives me a module object without my desired class <code>ToImport</code>. Looking at the <code>__import__()</code> <a href="http://www.python.org/doc/current/library/functions.html?highlight=%5F%5Fimport%5F%5F#%5F%5Fimport%5F%5F" rel="nofollow">documentation</a> shows me that there are more optional attributes to the function. I succeeded with</p>
<pre><code>theModule = __import__("the_module", globals(), locals(), ["ToImport"])
</code></pre>
<p>Why do I have to give the <code>fromlist</code> attribute? Can't I import all the modules attributes?</p>
http://stackoverflow.com/questions/1939065/oracle-pl-sql-import-japanese-values-csv-file0Oracle PL/SQL Import Japanese values CSV filecedric2009-12-21T09:19:21Z2009-12-21T10:07:57Z
<p>Hi. I am having problem with importing csv files containing values in japanese characters. When I do so it will display garbage when I query. my OS is japanese. My encoding for oracle NLS_LANG is JAPANESE_JAPAN.JA16SJISTILDE. I don't know what the problem is. When I try to import the very same file in some of my office mates' PC it just works fine</p>
http://stackoverflow.com/questions/1938724/generic-import-merge-logging-preprocessing-framework0Generic import/merge logging preprocessing frameworkAran Mulholland2009-12-21T07:41:52Z2009-12-21T07:41:52Z
<p>We write reporting software. we want to do imports of data, when the user imports data we need to do a pre-process phase and display an overview of the impact the import will have.</p>
<p>then the user will be able to choose actions based on this pre-processing phase that will determine how the actual import will proceed. usually in a situation such as this there will be several hundred issues that may arise, that can be categorised into groups, as they are essentially the same error/issue on different data.</p>
<p>we are looking for a generic logging management approach that allows users to specify actions to take at either the group level or individual data level. i have a feeling i will be writing this ourselves but would be interested to see what others have done. if anyone has looked at this problem space (even in a different language, th dot Net is preferred) i would be interested to hear about the problems and challenges.</p>
http://stackoverflow.com/questions/935207/how-to-populate-field-descriptions-in-ms-access1How to populate field descriptions in MS AccessDave Nicks2009-06-01T15:02:53Z2009-12-20T03:00:15Z
<p>When linking to an external data source via ODBC (especially an AS/400), I often run into cryptic field names on the other side, where a data dictionary is not available. In the rare event that I'm able to get the field descriptions from the other db, I would like to be able to import them all at once, rather than copy/paste each description into the table design form one at a time.</p>
<p>I wasn't able to find this in the system tables, so I don't know where this metadata is stored. Any ideas on where it is, and whether it can be updated in batch?</p>
<p>Update: I managed to read the schema using the OpenSchema method (see code below), but this returns a read-only dataset, making it impossible for me to update the descriptions.</p>
<pre><code>Function UpdateFieldDescriptions()
Dim cn As New ADODB.Connection
Dim rs As ADODB.Recordset
Dim rs2 As Recordset
Dim strSQL As String
Dim strDesc As String
Set cn = CurrentProject.Connection
Set rs = cn.OpenSchema(adSchemaColumns)
While Not rs.EOF
If Left(rs!table_name, 4) <> "MSys" Then
Debug.Print rs!table_name, rs!column_name, rs!Description
strSQL = "SELECT Description " & _
"FROM tblColumnDescriptions a " & _
"WHERE a.Name = """ & rs!table_name & """ AND " & _
"a.Column = """ & rs!column_name & """;"
Set rs2 = CurrentDb.OpenRecordset(strSQL)
While Not rs2.EOF
strDesc = rs2.Fields(0)
rs!Description = strDesc ' <---This generates an error
Wend
End If
rs.MoveNext
Wend
rs.Update
rs.Close
Set rs = Nothing
Set rs2 = Nothing
Set cn = Nothing
End Function
</code></pre>
http://stackoverflow.com/questions/1895744/python-app-engine-import-issues-after-app-is-cached0Python app engine import issues after app is cachedjustinjas2009-12-13T06:27:00Z2009-12-19T22:28:46Z
<p>I'm using a modified version on juno (<a href="http://github.com/breily/juno/" rel="nofollow">http://github.com/breily/juno/</a>) in appengine. The problem I'm having is I have code like this:</p>
<pre><code>import juno
import pprint
@get('/')
def home(web):
pprint.pprint("test")
def main():
run()
if __name__ == '__main__':
main()
</code></pre>
<p>The first time I start the app up in the dev environment it works fine. The second time and every time after that it can't find pprint. I get this error:</p>
<pre><code>AttributeError: 'NoneType' object has no attribute 'pprint'
</code></pre>
<p>If I set the import inside the function it works every time:</p>
<pre><code>@get('/')
def home(web):
import pprint
pprint.pprint("test")
</code></pre>
<p>So it seems like it is caching the function but for some reason the imports are not being included when it uses that cache. I tried removing the main() function at the bottom to see if that would remove the caching of this script but I get the same problem. </p>
<p>Earlier tonight this code was working fine, I'm not sure what could have changed to cause this. Any insight is appreciated. </p>
http://stackoverflow.com/questions/1933928/help-with-python-urllib2-import-error1help with python urllib2 import errorBaha2009-12-19T19:35:37Z2009-12-19T19:48:55Z
<p>In my script, I've imported urrlib2 and the script was working fine. After reboot, I get the following error:</p>
<pre><code> File "demo.py", line 2, in <module>
import urllib2
File "/usr/lib/python2.6/urllib2.py", line 92, in <module>
import httplib
File "/usr/lib/python2.6/httplib.py", line 78, in <module>
import mimetools
File "/usr/lib/python2.6/mimetools.py", line 6, in <module>
import tempfile
File "/usr/lib/python2.6/tempfile.py", line 34, in <module>
from random import Random as _Random
ImportError: cannot import name Random
</code></pre>
<p>And when I do <code>import random</code> separately, it works fine. Any ideas what might be wrong?</p>
<p>I'm using ubuntu 9.10 (up to date). thanks</p>
http://stackoverflow.com/questions/1933833/get-xml-from-excel-create-dataset-from-xml-and-import-into-tables0get xml from excel, create dataset from xml and import into tables.anish mohan2009-12-19T19:00:10Z2009-12-19T19:00:10Z
<p>I need to create an dataset from excel.</p>
<p>Currently I am doing it by following way :-
Go through each worksheet in workbook, get each cells value..and create datatable for each worksheet..and create a dataset for given workbook.</p>
<p>But we change the extension of an excel file to .xml(a.xls -> a.xml)..and create dataset out of this xml (this will avoid the above for loops).</p>
<p>My question is which method is faster...& better ?</p>
http://stackoverflow.com/questions/1933289/esp-error-when-i-call-an-api-function0ESP Error when I call an API function?Nick Brooks2009-12-19T16:05:13Z2009-12-19T17:23:12Z
<p><em>platform : <strong>win32</strong> , language : <strong>c++</em></strong></p>
<p><strong>I get this error when I call an imported function I declared:</strong></p>
<blockquote>
<p>Run-Time Check Failure #0 - The value of ESP was not properly saved
across a function call. This is
usually a result of calling a function
declared with one calling convention
with a function pointer declared with
a different calling convention.</p>
</blockquote>
<p><strong>And this is the code I used:</strong></p>
<pre><code>int LoadSongFromFile(int module);
typedef int (CALLBACK* loadSongT)(LPCTSTR);
//...
HINSTANCE dllHandle = NULL;
loadSongT loadSongPtr = NULL;
dllHandle = LoadLibrary(L"miniFMOD.dll");
loadSongPtr = (loadSongT)GetProcAddress(dllHandle,"SongLoadFromFile");
int songHandle = loadSongPtr(L"C:\b.xm");
</code></pre>
<p>The function I'm trying to call is <strong>SongLoadFromFile</strong> which requires one argument (in C# it is string so I assume its LPCTSTR in C++) and returns an int value.</p>
<p><strong><em>Can somebody check what have I done wrong?</em></strong></p>
<p>P.S. songHandle gets a weird negative value of <strong>-858993460</strong></p>
<p>This is how I can call that function from C# :</p>
<pre><code>[DllImport("MiniFMOD.dll")] public static extern int SongLoadFromFile(string name);
</code></pre>
<p>P.S. 2 : Using *typedef int (<strong>cdecl <em>loadSongT)(char</em>);* doesn't return an error but **songHandle</strong> comes up as 0.</p>
<h2>miniFMOD.dll is an unmanaged library</h2>
http://stackoverflow.com/questions/147821/loading-sql-files-from-within-php1Loading .sql files from within PHPJosh Smeaton2008-09-29T07:38:09Z2009-12-19T16:52:32Z
<p>I'm creating an installation script for an application that I'm developing and need to create databases dynamically from within PHP. I've got it to create the database but now I need to load in several .sql files. I had planned to open the file and mysql_query it a line at a time - until I looked at the schema files and realised they aren't just one query per line.</p>
<p>So, please.. how do I load an sql file from within PHP? (as phpMyAdmin does with it's import command).</p>
http://stackoverflow.com/questions/1924906/python-import-a-method-that-depends-on-a-imported-class0python import a method that depends on a imported classMathias Nielsen2009-12-17T22:02:33Z2009-12-18T05:20:48Z
<p>So if I have 2 files that look like this:</p>
<p>File 1</p>
<pre><code>import class1
import method1
def method2(something):
result = method1(classname=class1)
</code></pre>
<p>File 2</p>
<pre><code>def method1(classname):
some_result = classname.resultfinder
return some_result
</code></pre>
<p>Will this work?</p>
<p>I mean, since I am not importing class1 in the file where method1 lives, but method1 still ends up using class1.
Will method1 have access to class1 via the import made in File 1 where method 1 is imported to?</p>
http://stackoverflow.com/questions/1925764/python-import-fails-when-called-from-php0python import fails when called from PHPAlex Nguyen2009-12-18T01:34:39Z2009-12-18T01:41:42Z
<p>I'm having a puzzling problem when trying to import a module in python only when the script is called from php via system or exec.</p>
<p>From the python shell:</p>
<pre><code>import igraph #This works.
</code></pre>
<p>if the previous line was in a file, say, test_module.py, then:<br>
python test_module.py in the bash works.</p>
<p>Within PHP:<br>
exec("python test_module.py",$output,$retval) -> fails : $retval = 1.</p>
<p>However, if the script is instead : <code>import math</code>, then this is fine.</p>
<p>Anybody ever dealt with something similar?</p>
http://stackoverflow.com/questions/1922291/testing-subpackage-modules-in-python-30Testing subpackage modules in Python 3Mitchell Model2009-12-17T14:57:46Z2009-12-17T14:57:46Z
<p>I have been experimenting with various uses of hierarchies like this and the differences between absolute and relative imports, and can't figure out how to do routine things with the package, subpackages, and modules without simply putting everything on sys.path. I have a two-level package hierarchy:</p>
<pre>
MyApp
__init__.py
Application
__init__.py
Module1
Module2
...
Domain
__init__.py
Module1
Module2
...
UI
__init__.py
Module1
Module2
...
</pre>
<p>I want to be able to do the following:</p>
<ol>
<li>Run test code in a Module's "if <strong>main</strong>" when the module imports from other modules in the same directory.</li>
<li>Have one or more test code modules in each subpackage that runs unit tests on the modules in the subpackage.</li>
<li>Have a set of unit tests that reside in someplace reasonable, but outside the subpackages, either in a sibling package, at the top-level package, or outside the top-level package (though all these might end up doing is running the tests in each subpackage)</li>
<li>"Enter" the structure from any of the three subpackage levels, e.g. run code that just uses Domain modules, run code that just uses Application modules, but Application uses code from both Application and Domain modules, and run code from GUI uses code from both GUI and Application; for instance, Application test code would import Application modules but not Domain modules.</li>
<li>After developing the bulk of the code without subpackages, continue developing and testing after organizing the modules into this hierarchy.</li>
</ol>
<p>I know how to use relative imports so that external code that puts MyApp on its sys.path can import MyApp, import any subpackages it wants, and import things from their modules, while the modules in each subpackage can import other modules from the same subpackage or from sibling packages. However, the development needs listed above seem incompatible with subpackage structuring -- in other words, I can't have it both ways: a well-structured multi-level package hierarchy used from the outside and also used from within, in particular for testing but also because modules from one design level (in particular the UI) should not import modules from a design level below the next one down.</p>
<p>Sorry for the long essay, but I think it fairly represents the struggles a lot of people have been having adopting to the new relative import mechanisms.</p>
http://stackoverflow.com/questions/1916251/expressing-an-sconscripts-own-dependencies0Expressing an SConscript's Own DependenciesAndres Jaan Tack2009-12-16T17:27:42Z2009-12-17T14:08:09Z
<p>I have an SCons project set up as follows:</p>
<pre><code>Project/
SConstruct # "SConscript('stuff/SConscript', variant_dir = 'build')
stuff/
SConscript # "import configuration"
configuration/
__init__.py
Thing.py
</code></pre>
<p>When building, the SConscript is copied to the build directory, but the "configuration" module is not. Ordinarily, one would express a file dependency with the <code>Depends()</code> function (e.g. <code>Depends(program, object_files)</code>). In this case, though, the SConscript file is itself the "target" of the dependency.</p>
<p>How do I express this in my SConscript?</p>
http://stackoverflow.com/questions/1920630/how-to-import-oracle-clob-into-another-tablespace0How to import Oracle (C)LOB into another tablespace.Kriegel2009-12-17T09:56:01Z2009-12-17T11:45:50Z
<p>I'm importing a database dump from one Oracle 10g installation into another. The source has a layout with several tablespaces. The target has one default tablespace for the user I'm importing the dump into.</p>
<p>Everything works fine, for ordinary tables. The tables are relocated from their original tablespace to the user's default. The problem I'm facing, several tables contain CLOBs with explicit storage directives. That is, they name their storage tablespace. The imp command seems to be unable to relocate these CLOBs to the user's default tablespace.</p>
<p>Is there any hidden command line option for the imp command to relocate the CLOB storage to the user's default tablespace or even one named tablespace?</p>
<p>The error message ORACLE 959 looks like this:</p>
<pre>IMP-00017: Nachfolgende Anweisung war wegen Oracle-Fehler 959 erfolglos:
"CREATE TABLE "IF_MDE_DATA_OUT" ("OID" NUMBER(10, 0) NOT NULL ENABLE, "CLIEN"
"T_OID" NUMBER(10, 0) NOT NULL ENABLE, "TS_CREATE" TIMESTAMP (6) NOT NULL EN"
"ABLE, "TS_UPDATE" TIMESTAMP (6) NOT NULL ENABLE, "OP_CREATE" VARCHAR2(30) N"
"OT NULL ENABLE, "OP_UPDATE" VARCHAR2(30) NOT NULL ENABLE, "IDENTIFIER" VARC"
"HAR2(50), "TRANSFERTYPE" VARCHAR2(20) NOT NULL ENABLE, "STORE" NUMBER(10, 0"
"), "DATUM" DATE, "STATE" NUMBER(3, 0) NOT NULL ENABLE, "DATA_OLD" LONG RAW,"
" "SUPPLIER" NUMBER(10, 0), "BUYER" NUMBER(10, 0), "GOODS_OUT_IDS" VARCHAR2("
"4000), "CUSTOM_FIELD" VARCHAR2(50), "DATA_ARCHIVE" BLOB, "DATA" BLOB) PCTF"
"REE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1"
" FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "DATA32M" LOGGING NOCOMP"
"RESS LOB ("DATA_ARCHIVE") STORE AS (TABLESPACE "DATA32M" ENABLE STORAGE IN"
" ROW CHUNK 8192 PCTVERSION 10 NOCACHE LOGGING STORAGE(INITIAL 65536 FREELI"
"STS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)) LOB ("DATA") STORE AS (TABLE"
"SPACE "DATA32M" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE LOGG"
"ING STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAUL"
"T))"
IMP-00003: ORACLE-Fehler 959 aufgetreten
ORA-00959: Tablespace 'DATA32M' nicht vorhanden
</pre>
http://stackoverflow.com/questions/1917958/python-import-mechanics4Python import mechanicsCory Petosky2009-12-16T21:41:59Z2009-12-17T08:41:26Z
<p>I have two related Python 'import' questions. They are easily testable, but I want answers that are language-defined and not implementation-specific, and I'm also interested in style/convention, so I'm asking here instead.</p>
<p>1)</p>
<p>If module A imports module B, and module B imports module C, can code in module A reference module C without an explicit import? If so, am I correct in assuming this is bad practice?</p>
<p>2)</p>
<p>If I import module A.B.C, does that import modules A and A.B as well? If so, is it by convention better to explicitly <code>import A; import A.B; import A.B.C</code>?</p>
http://stackoverflow.com/questions/979057/any-reason-to-clean-up-unused-imports-in-java-other-than-reducing-clutter7Any reason to clean up unused imports in Java, other than reducing clutter?Kip2009-06-11T02:40:46Z2009-12-16T16:11:42Z
<p>Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for the compiler, so lots of unused imports won't have any impacts on the compiled code. Is it just to reduce clutter and to avoid naming conflicts down the line?</p>
<p>(I ask because Eclipse gives a warning about unused imports, which is kind of annoying when I'm developing code because I don't want to remove the imports until I'm pretty sure I'm done designing the class.)</p>
http://stackoverflow.com/questions/1913265/how-to-import-multiline-csv-files0How to import multiline csv files?oo2009-12-16T08:55:59Z2009-12-16T14:36:02Z
<p>I got a file in this format.</p>
<pre><code>"abc";"def";"ghi
asdasd
asdasd
asd
asd
aas
d
"
</code></pre>
<p>Now i want to import it with Java. Does anyone know a library that support this kind of import?</p>
http://stackoverflow.com/questions/1914311/pilcrow-appears-in-all-the-column-values-after-importing-from-csv-file-mysql0Pilcrow appears in all the column values after importing from CSV file - MYsqlSri Kumar2009-12-16T12:16:07Z2009-12-16T12:21:44Z
<p>Hello All,</p>
<p>my CSV content looks like this</p>
<pre><code>1234,123;123;123
5675,123;567;234;565
</code></pre>
<p>No Space is provided at the end of each row in CSV i.e. 1234,123;123;123(No space here)</p>
<p>Imported this using the following command</p>
<pre><code>mysql> load data local infile 'E:\sample.csv' into table Test.Table1 fields
terminated by ',' lines terminated by '\n' (Column1,Colunm2);
</code></pre>
<p>It gets executed successfully and i can find all the records in the DB. But the second column ends with a pilcrow. </p>
<p>When i try to edit, the value looks like</p>
<pre><code>123;123;123
<extra line here>
</code></pre>
<p>If i remove the extra line, the pilcrow disappears.</p>
<p>Type of the column1, column2 is varchar.</p>
<p>Any clues for the issue?</p>
http://stackoverflow.com/questions/1910939/accessing-importing-user-defined-classes-in-jrxml0Accessing/importing user defined classes in jrxmlNayn2009-12-15T22:35:48Z2009-12-15T23:19:17Z
<p>Hi,
Have anyone tried to import user defined classes in jasper report (.jrxml file)?
I want to use some (user defined) Util class inside my jasper report to cook some bean attributes. I am using Javabean datasource</p>
<p>Please let me know if you need further clarification.</p>
<p>syntax to import class is</p>
<pre><code><import value="java.util.HashMap"/>
</code></pre>
<p>I want to use</p>
<pre><code><import value="mypackage.MyUtil" />
....
....
<field name="myVar" class="java.lang.String">
<fieldDescription><![CDATA[MyUtil.cook(myData)]]>
</fieldDescription>
</field>
</code></pre>
<p>The simple definition for MyUtil.java could be </p>
<pre><code>package mypackage;
public class MyUtil
{
public static String cook(String data)
{
return data + "_cooked";
}
}
</code></pre>
<p>Thanks
Nayn</p>
http://stackoverflow.com/questions/1902102/oracle-import-data-into-a-table-with-a-different-name0Oracle -- Import data into a table with a different name?scrible2009-12-14T16:57:20Z2009-12-15T19:14:15Z
<p>I have a large (multi-GB) data file exported from an Oracle table. I want to import this data into another Oracle instance, <strong>but I want the table name to be different</strong> from the original table. Is this possible? How?</p>
<p>Both importing and exporting systems are Oracle 11g. The table includes a BLOB column, if this makes any difference.</p>
<p>Thanks!</p>
<p><strong>UPDATES</strong>:</p>
<p>The idea here was to update a table while keeping the downtime on the system that's using it to a minimum. The solution (based on <a href="http://stackoverflow.com/users/119634/vincent-malgrat">Vincent Malgrat</a>'s answer and <a href="http://stackoverflow.com/users/146325/apc">APC</a>'s update) is:</p>
<ol>
<li>Assuming our table name is <code>A</code> </li>
<li>Make a temp schema <code>TEMP_SCHEMA</code></li>
<li>Import our data into <code>TEMP_SCHEMA.A</code></li>
<li><code>CREATE REAL_SCHEMA.B AS SELECT * FROM TEMP_SCHEMA.A</code></li>
<li><del><code>DROP TABLE REAL_SCHEMA.A</code></del> Rename <code>REAL_SCHEMA.A</code> to <code>REAL_SCHEMA.A_OLD</code></li>
<li>Rename <code>REAL_SCHEMA.B</code> to <code>REAL_SCHEMA.A</code></li>
<li><code>DROP REAL_SCHEMA.A_OLD</code></li>
</ol>
<p>This way, the downtime is only during steps 4 and 5, both should be independent of data size. I'll post an update here if this does not work :-)</p>
http://stackoverflow.com/questions/1907571/cocoa-whats-the-difference-between-importing-in-the-header-and-importing-in-the6Cocoa: What's the difference between importing in the header and importing in the main file?gargantaun2009-12-15T13:46:54Z2009-12-15T14:41:04Z
<p>I've no idea why, but on occasion I've managed to fix some compile errors, most notably </p>
<pre><code>error expected specifier-qualifier-list before 'someClass'
</code></pre>
<p>by moving <code>#import "someClass.h"</code> from the .h file into the .m file. This has also worked with a couple of other problems i've encountered that have been (mysteriously from my point of view) related to headers. </p>
<p>Some cursory googling has turned up the answer "never import headers in header file" and that's where the advice stops. </p>
<p>Either I've completely made this up, or I've picked up the habit from somewhere, but I thought the header was where headers were meant to be imported. Clearly not, but can anyone explain to me why that is, and what's the preferred way of importing headers?</p>
http://stackoverflow.com/questions/1905347/a-way-to-automatically-organize-imports-in-xcode0A way to automatically organize #imports in XcodeArrel2009-12-15T05:28:42Z2009-12-15T05:43:33Z
<p>I love the "Organize Imports" command in Eclipse to implicitly add and remove classes imported into a source file (as in Java or ActionScript).</p>
<p>Is there a command in Xcode to update the <code>#import</code> directives at the top of.m Objective-C files based on the classes referenced within the file?</p>
http://stackoverflow.com/questions/1902138/importing-text-files-with-comments-in-matlab1Importing text files with comments in MATLABdevoured elysium2009-12-14T17:01:27Z2009-12-14T20:17:58Z
<p>Is there any character or character combination that MATLAB interprets as comments, when importing data from text files? Being that when it detects it at the beginning of a line, will know all the line is to ignore?</p>
<p>I have a set of points in a file that look like this:
<img src="http://img209.imageshack.us/img209/5139/ysabyc2tn4aeig0jvxotibd.png" alt="alt text">
And as you can see he doesn't seem to understand them very well. Is there anything other than // I could use that MATLAB knows it's to ignore?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1901622/import-typed-dataset-to-sql-server0Import typed DataSet to SQL Serversnarebold2009-12-14T15:37:37Z2009-12-14T16:44:13Z
<p>Dear guys</p>
<p>I want to import a typed DataSet with DataTables (not with TableAdapters) to my SQL Server database. The structure of all DataTables in the DataSet is the same like in the SQL Server database. With the same fields.</p>
<p>How can I import the whole typed DataSet to my SQL Server database?</p>
<p>Best regards</p>
http://stackoverflow.com/questions/1478997/import-or-link-for-importing-stylesheets1@import or <link> for importing stylesheets?Chris Schmitz2009-09-25T18:52:08Z2009-12-14T16:26:49Z
<p>Which method is best for importing multiple stylesheets? I assume, as with most things regarding the web, the answer is 'it depends', but are there downsides of using one or the other?</p>
http://stackoverflow.com/questions/1900189/how-to-access-a-builtin-module-in-python-when-there-is-a-local-module-with-the-sa1How to access a builtin module in Python when there is a local module with the same name?EOL2009-12-14T10:49:52Z2009-12-14T11:21:00Z
<p>How can a built-in module be accessed when a file prog.py is placed in the same directory as a local module with the same name?</p>
<p>I'm asking this question because I would like to create a package <code>uncertainties</code> that one can use as</p>
<pre><code>import uncertainties
from uncertainties.math import *
</code></pre>
<p>Thus, there is a local math module inside the uncertainties directory. The problem is that I want to access the built-in math module from uncertainties.py.</p>
<p>I prefer not to rename uncertainties.math because this module is precisely intended to replace functions from the math module (with equivalents that handle numerical uncertainties).</p>
<p>PS: this question pertains to the module I wrote for performing <a href="http://pypi.python.org/pypi/uncertainties/" rel="nofollow">calculations with uncertainties</a> while taking into account correlations between variables.</p>
http://stackoverflow.com/questions/1547345/blog-host-with-importing-from-dotnetnuke-blog0Blog host with importing from dotnetnuke blogpapadi2009-10-10T08:00:42Z2009-12-13T16:00:04Z
<p>I want to migrate my blog from my own dotnetnuke site to another host (like blogger, posterous etc). Do you know any such host that supports importing from dotnetnuke.
Posterous supports importing using MetaWebLog API, which is supposed to be supported by dotnetnuke blog module. I tried it but it does not work. I always get 'We were not able to authenticate this account' message from Posterous, altough at the same time I can post to my dnn blog using Word and MetaWebLog API.</p>