Following is the console session...
C:\Users\xxx>vmc tunnel myMongoDB
Getting tunnel connection info: OK
Service connection info:
username : uuuu
password : pppp
name : db
url : mongodb://uuuu:pppp@172.30.xx.xx:25200/db
Starting tunnel to myMongoDB on port 10000.
1: none
2: mongo
3: mongodump
4: mongorestore
Which client…
I'm using zend framework. currently everytime I need to use the db I go ahead and connect to the DB:
function connect(){
$connParams = array("host" => $host,
"port" => $port,
"username" => $username,
"password" => $password,
"dbname" …
I have to develop a new (desktop) app for a small business. This business currently has an Access database with millions of records. The file size is about 1.5 GB. The boss told me that searching on this DB is very slow. The DB consists of a single table with about 20 fields.
I also think the overall DB design isn't great. I thought to…
Externe Einflüsse wie Gesetze fordern die IT auf, (unsere) Daten zu
schützen. Doch wie prüft man die eingestellte Sicherheit einer Oracle
Datenbank überhaupt? Ist die geforderte Sicherheit ausreichend umgesetzt
und zwar im Idealfall entsprechend dem notwendigen Schutzbedarf? Wann
haben Sie eigentlich die Sicherheit Ihrer Oracle…
Na konci týdne byla na OTN uvedena verze Oracle Database 11g Release 2 pro Windows - jak 32-bit, tak i 64-bit. Doplnila tak již dríve dostupné verze pro Linux, Solaris (jak na SPARC, tak i x86), AIX a HP-UX.
Jako obvykle je možné stahnout instalacní soubory na všechny tyto platformy z OTN.
One of our more popular features is ‘DB Doc.’ It’s like JAVADOC for the database. Pick a connection, right-click, and go. It will generate an HTML documentation set for that schema.
For version 4, we’ve introduced a few enhancements based on user requests. That’s right, you asked, and we listened.
Added support for Package Bodies…
At stage 3 of the Prestashop Installation, I enter the DB details which I know to be correct, and I receive the error:
Database server was not found. Please
verify the login, password, and
database server name fields.
The server is localhost, and I have verified the database name and username. Why can Prestashop not find…
I want to save to db some strings with image. Image can be taken from gallery or user can set the sample one. In the other activity I have a listview which should present the rows with image and name. I'm facing so long this problem. It occurs when I wanna display listview with the image from gallery, If the sample image is saved…
Apple publie un rapport sur sa diversité,
« en tant que PDG, je ne suis pas satisfait de ces chiffres » a déclaré Tim Cook Apple a suivi l'exemple de ses concurrents et s'est également décidé à publier les statistiques sur la diversité de ses employés américains. Aux États-Unis, l'entreprise a déclaré que 55% de son effectif…
Dites-moi quelle est votre adresse e-mail, je vous dirai votre niveau de connaissances en informatique
Que l'on soit ou non client chez un FAI, nous possédons presque tous au moins une adresse e-mail. Le blog satyrique The Oatmeal s'est ainsi lancé dans l'analyse de la personnalité d'un internaute en fonction de l'adresse…
Its not urgent but I was just wondering how one would go about authenticating against a single db using python and openfire? Is there a simple module that will do this?
I have copied the web db directory(/var/lib/mysql/data/web/), when mysql is not running. I transferred this directory to another machine, where mysql is running.
web db's stuff is myisam based.
I am thinking about how to restore this on a different server. The strategy I have on my mind is the following.
copy the data…
I'd like to have a shared password-db file for several repositories on my home svn server (run under Windows). I've figured out that I need to set all the repositories to have the same realm, but I can't figure out how to just put in an absolute path to the shared password-db. I.e. the full path is something like:
…
I am configuring an Apache HTTP server so it reverse proxies requests starting with /app/ to an eXist-db instance running in a Tomcat server, on port 8082. This port has been closed in the firewall and is inaccessible to the outer world. Following the eXist documentation, I have following rules in place in my…
Hi,
Can somebody tell me how to rename the DB server instance name and a DB name
in SQL Server 2005?
Right Now I Have
SERVER/OLDNAME
-- oldnameDB
I want to change the server instance and also change the db name.
I have tried:
EXEC sp_renamedb 'oldName', 'newName'
and that has changed the dbname as…
Hi All,
I have a Exchange 2007 SP1 server running on Windows 2008
6 HD Drives in a RAID-1
OS, DB, Logs on separate RAID-1 Disks
Size of the Mailbox Database is 183GB and increasing
We only have First Storage Group and Second Storage Group
There is no more space on the server to install new Physical Disks…
Getting from client/server based 4GLs and databases where the 4GL is tightly linked to the database to Oracle and the cloud is not easy. The least risky and expensive option (in the short term) is to use the Progress OpenEdge DataServer for Oracle:
Progress OpenEdge DataServer
This eliminates the need to…
I am faced with some legacy shell scripts that run batch data processing jobs in Oracle using SQL+. For the most part, the data tier does not have to communicate back to the script with retrieved data to be passed for shell-level processing but in a few cases it does.
The problem is, SQL+ is really meant…
I have a web application requiring a middle-tier language to communicate between an oracle database and math routines on a Linux server and a flex-based application on a client. I'm not a software expert, and need recommendations for which language to use for the middle-tier.
The math routines are…
Hello,
I am trying to understand how to use Zend_DB in my program but I have some problem. The class below (DatabaseService) work when I pass it a simple query. However, if I pass it it query with a join clause my page just hangs and not error is return. I cut and paste the qry in a query browesr…
Hi,
I am developing a Blackberry app which should be able to access a DB. Here is my development environment and the tools I am using:
Eclipse (Galileo) IDE with the Blackberry plugin installed.
Blackberry OS 5.0
SQLAnywhere's DB 11 with UltraLiteJ (I am targeting Blackberrys running OS 4.1 and…
Working with cursors in mysql-python I used to call "BEGIN;", "COMMIT;", and "ROLLBACK;" explicitly as follows:
try:
cursor.execute("BEGIN;")
# some statements
cursor.execute("COMMIT;")
except:
cursor.execute("ROLLBACK;")
then, I found out that the underlying connection object…