Can anyone suggest a non java replacement for SQL Server Management Studio for OSX?
I currently use Parallels in Crystal mode and run SSMS, but it seems like there should be something better.
The Java EE 6 platform includes Java Persistence API to work with
RDBMS. The JPA specification defines a comprehensive API that includes,
but not restricted to, how a database table can be mapped to a POJO and
vice versa, provides mechanisms how a PersistenceContext can be
injected in a @Stateless bean and then be used for performing different…
The Java EE 6 platform includes Java Persistence API to work with
RDBMS. The JPA specification defines a comprehensive API that includes,
but not restricted to, how a database table can be mapped to a POJO and
vice versa, provides mechanisms how a PersistenceContext can be
injected in a @Stateless bean and then be used for performing different…
I am forced to install mongodb manually on an Ubuntu server because the machine sits behind a proxy and there is no way to temporary open port 11371 for key exchange to happen.
I am following this official mongoDB tutorial.
So I downloaded the tgz and extracted it in /usr/local/bin/mongodb. Where I got confused is when assigning the ownership…
When I was starting out, it seemed I had a much better time getting interviews and passing them. But now that I'm more experienced, I'm finding that its harder and harder to find a job. Do other developers out there feel the same way?
I'll give you an example. I did an interview last Wednesday. It was a small start-up with only one other…
I just transferred my data directory (of Mongo 1.6.5) to a new server and installed Mongo 2.0 on it. I set the data directory path and did sudo server mongod restart.
It failed, and the log file output says this -
***** SERVER RESTARTED *****
Sun Oct 9 07:51:47 [initandlisten] MongoDB starting : pid=8224 port=27017…
I have been having a problem with using Bundler and being able to access my gems without having to require them somewhere, as config.gem used to do that for me (as far as I know). In my Rails 3 app, I defined my Gemfile like so:
clear_sources
source "http://gemcutter.org"
source "http://gems.github.com"
bundle_path…
hi
i have this document in mongo:
{
"_id": ObjectId("4d0b9c7a8b012fe287547157"),
"done_by": ["1"]
}
and i want to add another value to "done_by" field, so my expected document will be::
{
"_id": ObjectId("4d0b9c7a8b012fe287547157"),
"done_by": ["1","2","3"]
}
i try this:
$conn = new Mongo();
$q…
Hello,
I was using the spawn plugin (http://rubyforge.org/projects/spawn/) which worked excellent. However, I then moved to Mongo (using mongo_mapper) and Spawn no longer worked.
Modifying the plugin is beyond the scope of my abilities. Is there a simple way to do spawning in Rails that would work with Mongo?…
I have installed munin and munin-node on my monitoring server and installed munin-node on my mongodb server, I have set them both up and all is working great. But, the mongodb plugins aren't showing on my monitoring server. I see the node listed and "Disk, Network, Processes, System", but not the mongo stuff.…
Hi,
I followed the windows installation instructions in mongodb's website but I still can't connect to MongoDB through PHP because of this error:
Class 'Mongo' not found
Why isn't the file containing the Mongo Class not being loaded?
Thanks
I'm running Ubuntu Server 12.04 (32 bit) on an old (1998) computer. Everything's working fine until I try and start MongoDB.
somekittens@DLserver01:~$ mongo
MongoDB shell version: 2.2.2
connecting to: test
Sun Dec 16 22:47:50 Error: couldn't connect to server 127.0.0.1:27017 src/mongo/shell/mongo.js:91…
How do I get sessions working with Node.js, express@2.0.0 and mongodb? I'm now trying to use connect-mongo like this:
var config = require('../config'),
express = require('express'),
MongoStore = require('connect-mongo'),
server = express.createServer();
server.configure(function() {
…
I'm attempting to avoid introducing any dependencies between my Data layer and client code that makes use of this layer, but am running into some problems when attempting to do this with Mongo (using the MongoRepository)
MongoRepository shows examples where you create Types that reflect your data…
Puppet 0.25.4 on ubuntu point blank refuses to execute the following command:
exec {"initiate replica set":
command => "echo 'rs.initiate()' | mongo",
path => ["/usr/bin","/usr/sbin","/bin"],
user => "root",
require => Class["mongodb"]
}
I can execute the command as…
For some reason pecl_http extension is not showing up in my test.php file with contains:
<?php phpinfo(); ?>
I just installed pecl_http using:
pecl install pecl_http
The install was successful and I verified it by running:
pecl list
Installed packages, channel pecl.php.net:…
I'm having trouble finding PECL on a Mac OS X 10.6 machine. I'm using the default install of Apache and PHP for development and have installed MongoDB, however I can't work with Mongo/PHP without the mongo PECL extension.
Is there a copy of PECL on a Mac or will I have to install it? If so,…
I recently stopped a subscription with 14 VMs in it and restarted it a few days later. Now all my VMs are working just fine at the exception of 6 used for MongoDB.
They respond to ping and so they show as online in the azure dashboard but they do not answer to anything else.
I tried (from…
Trying to squeeze a lot out of one question here -- please bear with me.
Although the MongoDB man pages make several useful recommendations about system settings like ulimit (http://docs.mongodb.org/manual/reference/ulimit/), and other production factors…
Sometime ago, I installed Postgres, and the Launch agent that causes it to run when I log in. Just now, I did the same thing for Mongo. I was just about to do it for Couch. I don't remember if I ever did it for MySQL, but I probably did. Mongo and…
I was not sure if this was for StackOverflow or here, I settled for here. I was wondering which file I should place this bash command in so it will be run on startup.
# Start the MongoDB server
/Applications/MongoDB/bin/mongod --dbpath…
I'm following this guidance
http://docs.mongodb.org/ecosystem/tutorial/backup-and-restore-mongodb-on-amazon-ec2/
I have 4 EBS 1000 IOPS volumes assigned to instance
These 4 volumes through MDADM assembled into software RAID10 array.
…
I have problem, i cant figure out, how to fix..
So i am on MacOSX machine, running php 5.3.15 version, using mongo 1.3.1 version.
When i try to execute php script, in which i try to connect to remote mongodb server, I get segmentation…
using mail for ruby I am getting this message:
mail.rb:22:in `encode': "\xC7" from ASCII-8BIT to UTF-8 (Encoding::UndefinedConversionError)
from mail.rb:22:in `<main>'
If I remove encode I get a message ruby
…
I'm trying to create a Document instance with params passed from the post-submitted form:
My Mongo mapped document looks like:
class Good
include MongoMapper::Document
key :title, String
key :cost, Float
key…