exp

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...

Why does my Visual C++ .exe project build create .lib and .exp files?

I have a solution consisting of 3 projects. One is a static library, and two are console-based .exe files that depend on and link against this library. Their settings seem to be identical. I build one of them: 1>------ Build started: Project: masksample, Configuration: Debug Win32 ------ 1>Compiling... 1>stdafx.cpp 1>Compiling....

C++ : complexity of the implementation of exp in cmath and real cost of the cost of a call compared to a floating point operation ?

[I globally edited the question to be more "useful" and clear] Hello all, I was wondering about the complexity of the implementation of the function exp in cmath. By complexity, I mean algorithmic complexity if possible. Otherwise cost compared to a floating point operation (addition for example) The following lines : double x = 3; ...