Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
385 views

Make NSInvocation invoke a specific IMP

I'm looking for a way to make an NSInvocation invoke a specific IMP. By default, it invokes the "lowest" IMP it can find (ie, the most-recently-overridden version), but I'm looking for a way to make ...
4
votes
3answers
100 views

When to use IMP operator in ColdFusion?

Implication: The statement A IMP B is the equivalent of the logical statement “If A Then B.” A IMP B is False only if A is True and B is False. It is True in all other cases. ...
4
votes
3answers
724 views

Can I use imp/exp tools to migrate database from Oracle 9 to Oracle 10

I'm subcontractor and my client wants to upgrade Oracle database from 9 to 10. Other vendor is going to perform the upgrade process, and I was asked to create whatever backup I need before the ...
3
votes
3answers
3k views

Linking error LNK2019 in MSVC, unresolved symbols with __imp__ prefix, but should be from static lib

I'm running into linking problems in MSVC for a project that I wrote for g++. Here's the problem: I build libssh as a static library as part of my application, adding the target in cmake with ...
2
votes
2answers
245 views

Objective-C Implementation Pointers

I am currently writing an XML parser that parses a lot of data, with a lot of different nodes (the XML isn't designed by me, and I have no control over the content...) Anyway, it currently takes an ...
1
vote
1answer
514 views

Oracle exp dump file import issue IMP-00009: abnormal end of export file

While importing an oracle database via imp, it terminates with below error IMP-00009: abnormal end of export file Import terminated successfully with warnings. The exp was run on the same machine ...
1
vote
1answer
132 views

imp.find_module()

According to the imp.load_module documentation, "The caller is responsible for closing the file argument." If I pass a file object returned from imp.find_module to imp.load_module, am I responsible ...
0
votes
1answer
58 views

dynamically import submodules in python

Suppose I provide a module in the command line and want to import it using the "imp" module: $ foo.py mod.a.b.c What is the proper way of doing this? Split the "mod.a.b.c" and add each path? The ...
0
votes
2answers
68 views

Oracle imp tables fail due to restraints

I am using the Oracle imp utility to import data into a set of empty tables in Oracle 10g. When I try to perform the import much of it fails due to referential integrity constraints. E.g. Can't ...
0
votes
1answer
252 views

Oracle imp and exp commands

Normally when i have to take a backup of of a database on unix, i do, exp DBUSER/DBPSW@INST file=xxx.dmp or load from a dump imp DBUSER/DBPSW@INST file=xxx.dmp my question here is : how can ...
0
votes
2answers
309 views

Is it possible to do oracle import util as non-dba user?

When I try to import a oracle dump. Following error displayed, Export file created by EXPORT:V10.02.01 via direct path IMP-00013: only a DBA can import a file exported by another DBA IMP-00000: ...
0
votes
0answers
489 views

iPhone XCode debugger 'print' of method calls returns (IMP) pointers instead of printing return value

Whenever I try to print the return value of a method in my XCode gdb console (and in the value formatters), I keep getting (IMP) pointers instead of the return value. For example: print ...