How do I access server administration console in MySql workbench 6.0 community edition? I cant seem to find it in my downloaded version. I guess I need it to backup my database and the stored procedures associated with it.
Thanks
Open a connection to your server (via its tile on the home screen). In the sidebar at the left you have now 2 sections: MANAGEMENT and SCHEMA. Depending on whether you use the combined or separate view each of the section is on its own tab or stacked together:
Either way you directly have now access to e.g. the backup/restore facitlities.
On Windows (tabs are at the bottom):
Related
I am trying to edit the settings of my AuraDB hosted neo4j instance, specifically, trying to set the following line:
apoc.import.file.enabled=true
I have looked at the official tutorial and many other places, and for the life of me, I am not able to find out where either the "settings" button is located, or how to locate the neo4j.conf or apoc.conf files. It seems that something has possibly changed in a newer version. I have tried both in the browser at https://console.neo4j.io/#databases and in Neo4J Desktop. For the desktop application, I am running it on Ubuntu via the .appimage. I created my database on the website and connected via remote connection following this guide.
Some things that might help me solve the issue:
Is it possible to open a shell in auradb to let me run normal bash commands?
Is the .conf accessible "within" the .appimage?
From the official description of File locations, I am supposedly able to do the following in Neo4j Desktop to find the configuration file:
From the Open dropdown menu of your Neo4j instance, select Terminal,
and navigate to /conf/neo4j.conf.
Yet, when I press the Open dropdown menu, I do not see a Terminal option. What I get is Neo4j Browser, Neo4j Bloom, and Neo4j ETL Tool.
Aura is a managed database - which is to say that you don't get low-level access to configuration of the kind you're describing. The documentation you're looking at relates to self-hosted instances of Neo4j, where you're the one managing and configuring the instance from scratch and where you have that level of access to the underlying configuration.
To the problem you're trying to solve, the following article entitled Loading data into Neo4j Aura is your best bet for the currently available options for loading data into your managed database.
Per the documentation, APOC is installed in Aura databases, but only a limited set of functions and procedures are enabled (as of May 2022). In particular, only a small subset of apoc.import procedures are available - from what I can see, CSV and GraphML support is enabled via apoc.load.csv and apoc.load.graphml, while you also have access to apoc.load.json and apoc.load.xml.
Lists of the currently supported procedures and functions are available at the foot of that document:
Neo4j Aura Supported APOC procedures (updated).json
Neo4j Aura Supported APOC functions (updated).json
From a Neo4j Aura Knowledge Article:
In Aura, we currently do not support changing any property that may
exist in the Neo4j product and defined in neo4j.conf.
I'm using Neo4j Desktop Version 1.4.3. I've created a new project named "Yelp Project", then uploaded the yelp dump file in it, but I'm not getting the option "Create new DBMS from dump". So I selected Add --> Local DBMS and created a database. But when I open Neo4j Browser, there are no nodes and relationships. I'm not able to figure out how to get this done, can someone help refer image
The feature that you are looking for is not yet available for Neo4j desktop Windows version. See below community thread discussion then scroll at the bottom.
https://community.neo4j.com/t/missing-create-new-dbms-from-dump-yelp-dataset/29393
I connect to Sybase IQ database via PhpStorm. End I have a tables explorer at database tool window.
What I need is to make tables names display like schema_name.table_name, not just the table name. Seems like I can achieve it in database driver settings, but don't know what should I do exactly. There is a setting in database connection window where I can choose such setting in AquaData studio.
AFAIK it's not possible to have schema_name.table_name -- only db_name.schema_name.table_name.
For this just enable "Flatten Schemas" option (under "cog" icon or via right click on tool window title/label).
P.S.
Cannot say anything about database driver settings for Sybase.
Just installed Neo4j community v1.9.4 - thanks for Windows Desktop Launcher. A couple of configuration questions:
1) How can I set the webserver to listen to any connection? In the previous versions I could set the webserver to listen on 0.0.0.0; With the new version, the properties file (neo4j-server.properties) doesn't appear any longer.
2) From the desktop launcher, is it possible to change the default database starting location? I am working with a previously created database and have to point the launcher at it every time I start.
Thanks.
When you start neo4j-community.exe, a window pops up (neo-4-j Version 2.2.2).
In the lower left corner, you find a button named Options...
Press this button, and you will find the configuration files.
C:\Users\YOUR_NAME_HERE\AppData\Roaming\Neo4j Community\neo4j-server.properties
When you push "Edit..." you can edit the files you want - in your case the file in the "Server Configuration" section.
Just add
# Disable authorization
dbms.security.auth_enabled=false
But be aware of the security problems mentioned here http://neo4j.com/docs/stable/security-server.html#security-server-auth
Hope that helps
You should see the installation folder from the Neo4j web console (last tab), in there you can change the neo4j-server.properies to your existing database. Same thing goes for the listening.
Usually connect to an external database but I wanted to fiddle with creating a project with a local database. I am using SQLServer Express Local Database, not CE.
I can add tables with EF but if I right click on Tables in Server Explorer the only options I have are Refresh and Properties, i.e. no Add Table menu option. Similarly, if I right click on one of the tables EF has created I also get only the Refresh and Properties menu options so I can't add rows, etc. Same problem with stored procedures; I can't add any (should I want to do some testing with EF and stored procedures) because I only have the Refresh and Properties menu options.
FOLLOW UP:
I have isolated this problem to VS2012 Professional. When I use VS2010 it works exactly as expected: I can add tables and stored procedures. Following the same steps with VS2012 results in the situation where there is no menu option to add either tables or stored procedures. I produced these test results with SQLServer 2012 LocalDB.
If you only see Refresh and Properties when you right click on Tables in Server Explorer, you probably need to install SQL Server Data Tools from http://msdn.microsoft.com/en-us/data/hh297027 .
I had a similar problem only with Visual Studio 2012 Express for Web following along with the "Getting started with ASP.Net MVC3" at www.asp.net. The tutorial used a Sql Server Compact edition but I have SQL Express 2012 so I changed the connection string to have the data source point at my local instance, .\SQLExpress2012. The app worked fine and was able to read and write to the database. However I could not edit the database in the Visual Studio Express Database Explorer (all the context menu options were missing except "refresh" and "properties).
I found that changing the data source in the connection string to "Data Source=(LocalDB)\v11.0;" fixed the problem. I read somewhere that if you use LocalDb instead of the SQL Server instance name then it will be accessed under your user account - must have been some kind of permissions issue.
The whole (working) connnection string is:
"Data Source=(LocalDB)\v11.0;AttachDBFilename=|DataDirectory|Movies.mdf;Integrated Security=True;"
Hope this saves someone a bunch of hours pulling their hair out, I'm almost bald now :)
I found that when installing Visual Studio 2013, I had not requested the 'SQL Server Data Tools' feature.
By re-running the installer from 'Control Panel' > 'Programs and Features', using the 'Modify' option, I could add the missing feature. On completion, the 'Add New Table' menu item was available.