I'm baking an AMI w/ Packer. I went through the PostgreSQL information and I got it to work.
My question: what is this doing exactly? & why do we disable it? There wasn't much information on what its doing, why we disable it, when do we enable it, etc.
I'm a DevOps Eng, I'm not all too familiar with PostgreSQL
Related
So my company installed PostgreSQL on my computer, which I use, rarely and without understanding, for one specific function.
I'm trying to follow Lynda etc. tutorials to understand (Postgres)SQL better, since that's what we use, but all the tutorials ask students to reconfigure certain aspects of their system in order to follow along with example files (which I would really like to do).
Since I've messed up my dev env once already, I'm hesitant to touch anything that will cause issues with the local versions of our project.
I know this is an extremely wide-angle question with no easy answer, but if anyone has any general advice for playing with sample databases in MAMP Pro (or anywhere else) using Postgres without interfering with the servers I'm currently running, it would be a huge help.
i would recommend you use Vagrant and set up a isolated postgresql instance. Here is a great wiki you can follow to do this.
UPDATE: Given your comment,An easy solution is to just backup your data and proceed trying out the the Postgres examples you can always restore your data after you are done..
This question has been asked here a number of times, but I have never found a correct solution.
Basically cake 2.x moved to PDO, effectively dropping support for MSSQL on Linux.
Our existing implementation using FreeTDS and CakePHP 1.3.14 worked fine. Now that I've almost completed the upgrade to 2.4.2 the Mssql support for Linux is a big pain.
The code we have actually connects to both MySQL and MSSQL databases.
My options are:
1) Move to a Windows server, which I don't want to do.
2) Port over the Odbc.php from cake 1.3 into cake 2.4.2 and use that instead
3) Try and hack up Sqlsrv.php (or extend it) and use dblib (sybase) to connect
4) Use the Datasource plugin (branch mssql-2.0). Kind of works, it extends DboSource.php but doesn't implement a number of things properly.
So, not sure where to go from here. Would love to get a hacked PDO solution working.
Anyone in this situation got a resolution?
Searching for the same problem, I came across a post in Nabble that has links to a Linux native ODBC driver for MSSQL recently released by Microsoft.
This may come in handy: http://cakephp.1045679.n5.nabble.com/SQL-Server-Linux-and-CakePHP-2-tp5463357p5464129.html
Is it possible to build desktop application whit small data base on linux/ubuntu? I have try eclipse+derby- not work, driver load, but can't connect to db. Eclipse +sqlite- not work too, No suitable driver. For a week from now i trying and can't connect to my db. If some1 have WORKING tutorial how to do this in ubuntu+eclipse, pls share. 1 week google, so please if some1 pass this to help me.
Now im using SQLite, i have load the sqlitejdbc-v051.jar in build path and use
Class.forName("org.sqlite.JDBC").newInstance();
but the result is: No suitable driver found for jdbc:derby:/home/vasil/MYDB
Have you taken a look at this site? It seems to be a fairly decent walkthrough. Is the db server that you are trying to connect to running and somewhere accessible to your application?
Take a look at this question. It seems to be very similar to yours. I havn't used derby but I have used many other db servers. It sounds like you dont have the driver on your applications classpath.
Also, this tutorial might also be helpful. It shows how to use jdbc to connect to a db.
We are a SVN/Maven/Hudson shop. We are experimenting with using the Maven Release Plugin to help automate our very laborious tagging and releasing process. We are happy with what we are seeing and have researched thus far in regards to this plugin.
Our question is - if we need to have different tags for some of the modules / applications being built, is there a way to script the responses?
We have waded through the interactive dry runs successfully, however we are looking to script these out to further our automation.
Has anyone tried this or know if it is possible?
Does the "Batch Mode" allow this functionality?
Thanks
Joe R
You can -B but it will use default version names (removing -SNAPSHOT at the end).
regarding tags per module you can have a look at the parameter : autoVersionSubmodules 1
/Olivier
Has everybody here ever built a DB Miner?
If you have ever built a DB Miner then can
you give some sort of knowledge of how to build
one or suggest me some books that i should read
in preparing for it.
Cause i'm trying to build a DB Miner but i stuck
in what to begin.
Thank you !
I suppose it would be terrible advice if I tell you not to build your own? It has to be a hellishly complex subject if you're attempting to build something that works on many data sets.
Here's a demo of how to do some data mining on the StackOverflow database using some free Excel plug-in from Microsoft:
http://sqlserverpedia.com/blog/sql-server-tutorial/data-mining-the-stackoverflow-database/
Amazon has lots of stuff. Pick one. I chose this because I guessed that you'd like it to be SQL Server-specific.