Running Business Objects Data Integrator from the command line [closed] - business-objects

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am using the Business Objects Data Integrator tool and I want to run it from the command line so I can setup some automated unit testing.
Does anyone know if there is a command line to run it?

From
http://help.sap.com/businessobject/product_guides/xir2acc/en/DIAdministratorGuide.pdf
Perhaps pp65-66 are what you want? I confess to never having tried it myself, but it looks like it should work. :)

Related

How does MySQL do I/O? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed last year.
Improve this question
I was wondering how MySQL (and other databases for that matter) work under the hood. Do they use standard C I/O calls like fseek to find a record?
Here is the link to the source code. From a quick review of the file I can confirm that there are multiple check that is been done before and after an insert. It's actually a great idea to review the whole file very interesting.

How can I test MySQL statements online? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I need a online website to test MySQL statements (some sort of sandbox). Bonus points if you can store code and share it with other people. Something similar to jsfiddle.net for JavaScript. It allows code testing in a safe secure environment.
Theres an sql formatting tool that also reports syntax errors:
http://www.dpriver.com/pp/sqlformat.htm

Where I can get mysql 4.1.3b-beta-nt-max version? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I need reproduce the exact same environment of a system in production, it's working with mysql 4.1.3b-beta-nt-max version, where I can get this exact version? I have looking with google but it seems like it's no longer available anywhere.
Thanks.
Try searching historical databases such as
http://www.oldapps.com/mysql_server.php?old_mysql_server=131
...in a pinch, you can install a "similar" version (such as the one above, 4.1.3beta-win), and then replace the binaries with the production ones. MySQL doesn't do strange things with the registry, so this procedure should suffice.

I can't find the code for diff binary in mercurial source code [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am reading source code of mercurial,but what I saw in bdiff.c and mdiff.py is processing text, not binary.but they said mercurial treat all files as binary.I am confused.
bdiff.c and mdiff.py both works perfectly fine on binary files. They won't give you optimal diffs since they rely on the presence of newlines, but they work correctly (you won't lose any data).

Tools for analyzing the slow query log of MySql [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I am looking for a tool that will help me analyze my slow queries log of MySql, any suggestions?
Did you try mysqldumpslow, part of MySQL?
http://dev.mysql.com/doc/refman/5.1/en/mysqldumpslow.html
I like this Ruby gem: https://github.com/wvanbergen/request-log-analyzer