imp

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 upgrade, and then recreate the environment in Oracle 10. All my data is stored in a separate database in a single schema. No fancy relations, scri...

Objective-C Implementation Pointers

Hi, 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 unacceptably long time to download and read in (about 13 seconds) and so I'm looking for ways to increase the efficiency of the read. ...

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 [alternateDepartures count] $9 = (IMP) 0x33725441 <-[NSCFArray count]+1> here, alternateDepartures is an NSArray of ints, as evidenced by: (gdb) po al...

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

Hi all, 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 add_library(ssh_static STATIC $libssh_SRCS) Libssh is in C, so I have 'extern "C" {...}' wrapping the includes in my c++ sources. I then...