MySQL 5.6.* Development version somewhere / create AUR package

Hi,
I am interested in the new features of mysql version 5.6 (innodb full text search).
I could not find any package in the repos nor in the AUR. If that is correct we could create one ( I already had a look at the official package for mysql).

There isn't a stable version, but you can install 5.6.6-m9 (which I assume means milestone 9).
Here's a PKGBUILD:
# Contributor: Andrea Scarpino <[email protected]>
# Contributor: Douglas Soares de Andrade <[email protected]>
pkgbase=mysql
pkgname=('libmysqlclient' 'mysql-clients' 'mysql')
pkgver=5.6.6
_milestone=m9
pkgrel=3
arch=('i686' 'x86_64')
license=('GPL')
url="https://www.mysql.com/products/community/"
makedepends=('cmake' 'openssl' 'zlib')
options=('!libtool')
source=("http://ftp.gwdg.de/pub/misc/mysql/Downloads/MySQL-5.6/${pkgbase}-${pkgver}-${_milestone}.tar.gz"
'mysqld.rc' 'my.cnf' 'mysqld-post.sh' 'mysqld-tmpfile.conf' 'mysqld.service')
md5sums=('82f4a7fa46db5d735fdf34002be77e9d'
'e7eb2faeab755cbb2fe03542bf328da9'
'1c949c0dbea5206af0db14942d9927b6'
'6ea6ceb360d09a774e87335ee098ddd5'
'2fa6e456964d4ff5e6d4f9ff0126aed6'
'a0e1460c276a50a9666c331de83271f2')
build() {
mkdir build
cd build
# CFLAGS/CXXFLAGS as suggested upstream
cmake ../${pkgbase}-${pkgver}-${_milestone} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DSYSCONFDIR=/etc/mysql \
-DMYSQL_DATADIR=/var/lib/mysql \
-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci \
-DENABLED_LOCAL_INFILE=ON \
-DINSTALL_INFODIR=share/mysql/docs \
-DINSTALL_MANDIR=share/man \
-DINSTALL_PLUGINDIR=/usr/lib/mysql/plugin \
-DINSTALL_SCRIPTDIR=bin \
-DINSTALL_INCLUDEDIR=include/mysql \
-DINSTALL_DOCREADMEDIR=share/mysql \
-DINSTALL_SUPPORTFILESDIR=share/mysql \
-DINSTALL_MYSQLSHAREDIR=share/mysql \
-DINSTALL_DOCDIR=share/mysql/docs \
-DINSTALL_SHAREDIR=share/mysql \
-DWITH_READLINE=ON \
-DWITH_ZLIB=system \
-DWITH_SSL=system \
-DWITH_LIBWRAP=OFF \
-DWITH_MYSQLD_LDFLAGS="${LDFLAGS}" \
-DWITH_EXTRA_CHARSETS=complex \
-DWITH_EMBEDDED_SERVER=ON \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_PARTITION_STORAGE_ENGINE=1 \
-DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
-DWITHOUT_ARCHIVE_STORAGE_ENGINE=1 \
-DWITHOUT_BLACKHOLE_STORAGE_ENGINE=1 \
-DWITHOUT_FEDERATED_STORAGE_ENGINE=1 \
-DCMAKE_C_FLAGS="-fPIC ${CFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 -fomit-frame-pointer" \
-DCMAKE_CXX_FLAGS="-fPIC ${CXXFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 -felide-constructors -fno-rtti"
make
package_libmysqlclient(){
pkgdesc="MySQL client libraries"
depends=('openssl')
cd build
for dir in include libmysql libmysqld libservices; do
make -C ${dir} DESTDIR="${pkgdir}" install
done
install -d "${pkgdir}"/usr/bin
install -m755 scripts/mysql_config "${pkgdir}"/usr/bin/
install -d "${pkgdir}"/usr/share/man/man1
for man in mysql_config mysql_client_test_embedded mysqltest_embedded; do
install -m644 "${srcdir}"/${pkgbase}-${pkgver}-${_milestone}/man/$man.1 "${pkgdir}"/usr/share/man/man1/$man.1
done
package_mysql-clients(){
pkgdesc="MySQL client tools"
depends=('libmysqlclient')
cd build
make -C client DESTDIR="${pkgdir}" install
# install man pages
install -d "${pkgdir}"/usr/share/man/man1
for man in mysql mysqladmin mysqlcheck mysqldump mysqlimport mysqlshow mysqlslap; do
install -m644 "${srcdir}"/${pkgbase}-${pkgver}-${_milestone}/man/$man.1 "${pkgdir}"/usr/share/man/man1/$man.1
done
# provided by mysql
rm "${pkgdir}"/usr/bin/{mysql_{plugin,upgrade},mysqlbinlog,mysqltest}
package_mysql(){
pkgdesc="A fast SQL database server"
backup=('etc/mysql/my.cnf')
install=mysql.install
depends=('mysql-clients' 'systemd-tools')
options=('emptydirs')
cd build
make DESTDIR="${pkgdir}" install
install -Dm644 "${srcdir}"/my.cnf "${pkgdir}"/etc/mysql/my.cnf
install -Dm755 "${srcdir}"/mysqld.rc "${pkgdir}"/etc/rc.d/mysqld
install -Dm755 "${srcdir}"/mysqld-post.sh "${pkgdir}"/usr/bin/mysqld-post
install -Dm644 "${srcdir}"/mysqld-tmpfile.conf "${pkgdir}"/usr/lib/tmpfiles.d/mysqld.conf
install -d "${pkgdir}"/usr/lib/systemd/system
install -Dm644 "${srcdir}"/mysqld.service "${pkgdir}"/usr/lib/systemd/system/
# provided by libmysqlclient
rm "${pkgdir}"/usr/bin/{mysql_config,mysql_client_test_embedded,mysqltest_embedded}
rm "${pkgdir}"/usr/lib/libmysql*
rm -r "${pkgdir}"/usr/include/
rm "${pkgdir}"/usr/share/man/man1/{mysql_config,mysql_client_test_embedded,mysqltest_embedded}.1
# provided by mysql-clients
rm "${pkgdir}"/usr/bin/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap}
rm "${pkgdir}"/usr/share/man/man1/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap}.1
# not needed
rm -r "${pkgdir}"/usr/{data,mysql-test,sql-bench}
rm "${pkgdir}"/usr/share/man/man1/mysql-test-run.pl.1
install -dm700 "${pkgdir}"/var/lib/mysql
That's based on the PKGBUILD for the mysql in the repos. All I did was edit which version it should grab, the md5sum and in a few places the paths, since the '-m9' needs to be added. I've run it for myself for a couple of weeks and it seems to run quite well.
Note that while you can migrate mysql 5.5 data into mysql 5.6 it won't do the reverse for you. I suggest you make backups and all that. You may have other problems, this is, of course, totally unsupported.
Last edited by SidK (2012-08-30 18:45:00)

Similar Messages

  • [Solved] Python: Creating AUR package, binary can't find python module

    I'm building a PKGBUILD for PyLotRO for the AUR and I'm using a Debian package.  I tried just copying the content of the data.tar.gz to the filesystem assuming the directory structure is the same for the packages but apparently it is not.  At least I'm figuring this is a filesystem problem but I don't know enough about python to be sure.  When I start the program, this is what I'm getting:
    pylotro
    Traceback (most recent call last):
    File "/usr/bin/pylotro", line 31, in <module>
    import PyLotROLauncher.Runner
    ImportError: No module named PyLotROLauncher.Runner
    I can see the file in the package that (I would think) would be the responsible module:
    /usr/share/pyshared/PyLotROLauncher/Runner.py
    So I'm thinking the python package must store modules in a different location?????
    The package requires: 4suite, python, and pyqt.  Any thoughts about what do I need to do here??
    Last edited by Gen2ly (2010-01-01 09:25:03)

    Nezmer wrote:Did you try putting stuff in /usr/lib/python2.6/site-packages/ ?
    Yes, 'site-packages' is the correct place.  Thank you Nezmer.
    wonder wrote:
    why you are using debian package rather that the source?
    http://www.lotrolinux.com/PyLotRO-0.1.11.tar.bz2
    cd $srcdir/PyLotRO-$pkgver
    python setup.py install --root=$pkgdir || return 1
    should be enough
    Ah, beautiful.  Wasn't aware before that python install script could define a destdir.  Much better way of doing it.  Thanks wonder.
    Last edited by Gen2ly (2009-12-29 20:44:12)

  • I've developed a way to AUR search+install with pacman via proxy

    at the moment it's not complete, and the database is up-to-date only as of Oct-16-2007;; but i believe it's in a stable position to be tested ..
    i look forward to your feedback
    so anyway .. i call it alaura, and it is a system developed in python to create a pacman database in order to allow
    users to search as they normally would, and simply issue a command .. pacman -S pkg-in-aur and have that
    pkg installed as they would any other pkg ...
    add
    [alaura]
    Server = http://arch.u54.eu/repo
    to your pacman.conf
    the client side of the system is basically, download pkg from alaura repo, that pkg has an install script,
    the install script removes the (alaura)proxy pkg and then uses yaourt(i hope to develop a simpler installer that does one job) to install the pkg from aur
    . ad oh, the repo is generated using gradgrind's gen_repo script
    so far i've only indexed 100 pkgs :: `pacman -Sl alaura`
    more details will be published soon, i have to go study now ...
    Last edited by kumico (2007-10-17 12:07:24)

    no one seemed interested, so when i switched to using a laptop i didn't take the code with me, i have a slightly older version somewhere though,
    i have exams this week but i will prolly squeeze a tester out, i still have my design of the system somewhere as well so it shouldn't be too difficult to pickup where i left off
    thanks for taking an interest.

  • Videos recorded in mp4 format throught AMS(development version) not playing on android and Ios device.

    I am using adobe ams(development version) to record video files in mp4 format using rtmp protocol. I am using mp4 as the file extension and as the stream specifier(codec).The videos are saving correctly.When i copy these files on a mobile device(android and iOS) they are not playing.Can somebody tell what I am doing wrong.
    The rtmp url I am using is rtmp://localhost:1935/mp4:videoname.mp4

    Dropbox - defaultcodec.mp4
    Dropbox - h264codec.mp4
    These are the two files that I created .The first file is created by the default codec used by Flash player.
    The second file(h264codec.mp4) is created by using Flash player 11 and as3 . I have encoded the file using h.264/AAC.
    The tutorial followed for creating the second encoded file is Encoding live video to H.264/AVC with Flash Player 11 | Adobe Developer Connection
    Thanks in advance . These two files stream successfully in the web application using flash player and as3 .I can play both of them in VLC too. But these files wont play on any mobile device(both android and iOS).
    Please send me your feedback on this . In the meanwhile I will look into http streaming. 
    Any help is greatly appreciated. 

  • SQL Developer  Version 1.5.1 Build MAIN-5440 Imported Connections missing

    I have a problem using SQL Developer Version 1.5.1 Build MAIN-5440. I have successfully imported connections from my previous version of SQL Developer. After I restart, all the connections I have imported has been gone. I tried to import the connections but got an error message:
    java.lang.NullPointerException
         at oracle.jdeveloper.db.DatabaseConnections.getReferenceable(DatabaseConnections.java:695)
         at oracle.jdeveloper.db.DatabaseConnections.addConnection(DatabaseConnections.java:762)
         at oracle.dbtools.raptor.connections.ConnectionGrinder.doImportExport(ConnectionGrinder.java:243)
         at oracle.dbtools.raptor.connections.ConnectionGrinder.invoke(ConnectionGrinder.java:117)
         at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.handleEvent(DatabaseNavigatorController.java:200)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:524)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:855)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:496)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    I tried to create a new connections. I can test the newly created connections but cannot save it.

    This bug was fixed in SqlDev 2.1.1. You'll find this build on our homepage.
    -Raghu

  • Crystal Report 2008 [CR Developer] version - connectivity issue

    Hi Folks,
    I am not sure this is right forum to post my question, after a long research I found this forum. Year ago I developed proto type reports in Crystal 11.5 version and integrated with Power Builder 11.5 to our client. It took almost a year to get approval from the client.
    Now, I have installed Crystal Report 2008 [CR Developer] version and I am not able to call previously developed reports from power builder 11.5
    Power Builder code to invoke crystal reports:
    g_ole_crx_application = CREATE OLEobject
    gi_return = g_ole_crx_application.ConnectToNewObject('CrystalRuntime.Application.11')
    here gi_return returning -2.
    Questions:
    What is CR Developer version# 12.0.0.683 ?
    Do I need to install Crystal Reprot 2008 server in order to integrated with Power Builder 11.5?
    Should I installed any service packs? If yes, please let me know the path
    What are the runtime dll's should I used to integrate with PB11.5? other than following
    craxdrt.dll CRDesigner.dll CRDesignerCtrl.dll crqe.dll CRViewer.dll
    Please let me know the answers.
    Thanks
    Indra

    Hi Indra,
    Moved your post to the Legacy SDK forum.
    CR 2008 no longer ships the RDC, CR XI R2 is the last version that included the craxdrt.dll. The RDC components were deprecated and no longer available.
    If you want to upgrade you now must use the CR .NET Assemblies.
    Thank you
    Don

  • Unit Test exports between different SQL Developer versions

    Hi,
    I am having problems with trying to export and import unit test suites between SQL Developer versions. I can't find any documentation in this area. We have a number of unit test suites exported as XML files from version 2.1.1.64, and below are combinations of things I have tried:
    - I have tried to import a unit test suite into version 3.0.0.4 that was exported from version 2.1.1.64 and get the error "Import failed. unexpected null value". I expect that this is probably an unsupported action due to repository changes between the two versions - should I be able to do this?
    - I have upgraded the repository with unit tests in it. The unit tests run perfectly well in the upgraded repository. However, if I try to export any suites or individual tests, I get an error "Export failed.". A XML file is created but with what looks like only the header part of it.
    - I have created a new unit test suite in version 3.0.0.4 and this exports successfully.
    - I have gone into each test of a suite in the upgraded repository and made a change so that I can perform a commit. When I do an export, this does then work successfully.
    Therefore it appears that something is not carried out by default when the repository is upgraded, but this fixes itself if the test is amended and committed in the upgraded repository. Although this may be a workaround, we have 100's of tests and is not something I really want to do. Has anyone else experienced this and got any recommendations for this?
    Thanks, Pierre.

    Hi,
    I am having problems with trying to export and import unit test suites between SQL Developer versions. I can't find any documentation in this area. We have a number of unit test suites exported as XML files from version 2.1.1.64, and below are combinations of things I have tried:
    - I have tried to import a unit test suite into version 3.0.0.4 that was exported from version 2.1.1.64 and get the error "Import failed. unexpected null value". I expect that this is probably an unsupported action due to repository changes between the two versions - should I be able to do this?
    - I have upgraded the repository with unit tests in it. The unit tests run perfectly well in the upgraded repository. However, if I try to export any suites or individual tests, I get an error "Export failed.". A XML file is created but with what looks like only the header part of it.
    - I have created a new unit test suite in version 3.0.0.4 and this exports successfully.
    - I have gone into each test of a suite in the upgraded repository and made a change so that I can perform a commit. When I do an export, this does then work successfully.
    Therefore it appears that something is not carried out by default when the repository is upgraded, but this fixes itself if the test is amended and committed in the upgraded repository. Although this may be a workaround, we have 100's of tests and is not something I really want to do. Has anyone else experienced this and got any recommendations for this?
    Thanks, Pierre.

  • "VI has error of type 1002288.The full development version of LabVIEW is required to fix the errors"

    Hi,
    I had created an executable in LabVIEW 8.6 on a windows XP 32 bit PC. The application uses some Vision VIs. The executable runs in most of the PCs except one. the PC is a windows 7 64bit. Initially i got the error "Labview Load error code 3: could not load front panel". I fixed this by changing the source file settings in the application builder. Now i am getting the error "VI has error of type 1002288.The full development version of LabVIEW is required to fix the errors" and the exe shows a broken run button.
    But if i build the exe in the same PC i get no errors and it works fine. Moreover i have tested this exe in a different PC with the same configuration, it works there. I have tried reinstalling labview in the PC the problem still persists.
    Solved!
    Go to Solution.

    Hi Rajshekar.
    > Which version of LabVIEW are you using on PC with Win7 64bit? would like to check if there are any issues with LV2009 32bit on 64bit OS..
          - The version of Labview on the win7 64bit PC is also lv8.6 full development system.
    > Do you get the same error on the other PC with same config(Win7) when running the .exe generated using LV 8.6 on WinXP 32bit? just to make sure the problem is with OS or LV..
          - the same problem occured at one more PC with the same configuration. but when i tested in an another PC of the same config it worked i am not able to isolate and decide that the error is based on one particular PC config.
    I have listed the environments in which application ran and how the application was put in to the PC.
    I would also like you to know that i have created an installer for the exe. I am also using NI vision in my application and this is the error "An error occured loading VI 'IMAQ GetImagePixelPtr'. LabVIEW load error code 3: could not load front panel"....and rest is what i said in my previous post
    1. Use the installer to install the application.
    2. just copy the exe created in LV 8.6 into a PC that already has LV development system installed in it
    3. The PCs might either be a blank one with no history of LV installed in them
    4. The PCs might have diffrent versions of LV development systems installed in them (8.2,8.5,8.6,2009)
    All PCs that have LV development system(s) installed in them, was able to run the application except the one with win7 64, where i have tried uninstalling all NI software and use only the installer to install, install LV 8.6 full development system and try runnning the exe, nothing works.
    Thanks

  • Can i use FMS developer version for commercial purpose

    HI,
    Can I use flash media server4 developer version for commercial, if some one have knowledge about scope of the developer version then, please help me.
    Thanks
    Ram

    If you refer to EULA of FMS you will see below text corresponding to Developer License:
    .1.              Software  License.  Subject to the terms and conditions of this Agreement, Adobe grants to  Licensee a perpetual (except as set forth in Section 15) non-exclusive  license to install the Software on one (1) Computer  or Virtual Server and use  the Software delivered hereunder according to the terms and conditions of  this Agreement and the Documentation.  Unless indicated otherwise by the License  Key (as defined below) provided to Licensee, Licensee shall be deemed to have  licensed the Development Server. If Licensee has  licensed a Trial Version, in which case Section 2.2 applies, or if Licensee has  licensed Not For Resale Software, in which case Section 2.3 applies.
    2.1.1.         Development  Server License.  This Section 2.1.1 applies only if Licensee  has obtained a valid Development Server license to the Software.  In addition to  the other terms contained herein, (a) Licensee’s license to the Development  Server Software is limited to a maximum number of (i) ten (10) Concurrent Connections when using with the Real Time Media  Protocol (RTMP), and (ii) fifty (50) Concurrent Connections when using the Real  Time Media Flow Protocol (RTMFP); and (b) Licensee shall not use the Development  Server for load balancing.  No maintenance and support is available for the  Development Server.   
    So as per EULA you can use Developer Edition for commercial purpose with restriction that it cannot be used for load balancing or creating cluster of Developer Edition Network.
    You can refer to this old article when this part of EULA was introduced: http://www.flashcomguru.com/index.cfm/2006/10/9/fmsdevedition

  • Cannot find Oracle Installer subdirectory on Forms developer version 6i

    I need to package forms and reports I created using Forms developer version 6i and Reports Developer version 6i.
    According to the Forms documentation file, I should be able to find the TEMPLATES\OISFP10 and the TEMPLATES\RELEASE subdirectories on the "Oracle Distribution media" (which I assume is the Forms and Reports installation CD).
    I cannot find these subdirectories on my installation CD or anywhere on my drive.
    Developer 2000 used to install these subdirectories in the 'c:\dev install' subdirectory. Forms and reports developer do not install these subdirectories anywhere. Could someone tell me please how to get or where to find these subdirectories. Thanks

    Hi,
    First use gunzip utility to unzip .gz file. Once you are done, you will get a .tar file. Use tar -xvf to untar the file to a directory. It is similar to unzip.
    Regards,
    Arun

  • Netweaver developer  version

    Operating System:Windows Server 2008 r2
    Ram :3gb ddr3(should the fastest ram in market)
    Hardisk:250gb laptop(should be 5400 rpm)But to install the old version.I see the hardisk usage install in windows 7,the read and write not so so fast when installing abap file.
    Processor:2ghz single core .so 2 core = 4ghz.Should be speed enough to install any software.When previous tried to install in windows 7.The usage processor not even more then 10%
    [http://img534.imageshack.us/img534/2252/peningsap.png]
    Problem  1 : The installer though this laptop AMD 64?Odd since it is core 2 duo t6400 laptop.
                   2 : Are windows server 64 bits not supported.The installation request whooping 20 gb(10 gb real and 10 gb swap) ram while in logic 32 bit only max support 3.25 gb  ram.I run in other laptop the request ram change to 8gb.

    I successfully install the netweaver developer version in older laptop
    Processor : Dual Core t4200
    Ram: 1gb ddr2
    Hardisk :300gb
    Brand : Lenovo 3000 Y 400
    Graphic Card : Gma950
    Hardisk Usage: Folder : sapdb:28.8 gb
                                        : usr: 1.11 gb
    The most requirement hardisk best was 30 gb per installation.
    Install time :  9 .hours.The longest time software i have install.
    Ram Usage : 3.09 gb.This is nearly the limit of 32 bit processor which are 3.25 which are not supposed too.Extra ram required for hardware.64 bit operating system seem not supported in my first trial on my latest laptop.
    My Preview.
    1 I try to create the role with accounting .But the accounting seems empty. After searchin via internet.The module fico doesn't exist in the system.What?this should be a demo for a system.Even small software provide FICO screen.
    2.When select user,user name must key in?Should have a popup to search the user login.
    It's hard to suggest to other customer SAP since i don't see the functionality i can manipulate.
    Edited by: alien3dx on Feb 19, 2010 4:54 AM

  • Access developer version with admin rights

    I have MS SQL Server 2012 Developer version installed on my local machine using Windows 7.
    I lost my access to SQL Server local developer version when my company change policy to remove admin rights to local machine for some reason.
    Since I lost local machine admin rights, I am unable to access MS SQL Server 2012 developer version.
    I would like to know are there any work around to access MS SQL Server 2012 Developer version without local admin rights for Windows 7.
    Your help and information is great appreciated,
    Regards,
    Souris,

    Hello Souris ,
    Please , could you provide more information about your problem ?
    Are you unable to create new databases ? The error messages would be appreciated.
    I don't think that you have posted in the "good" forum , but for a moderator , it is difficult to find a better forum as we don't know what it is happening on your computer.
    I think that you should always be able to create databases in your own directory Users\yourusername on which you should have every access rights . The main problem could be to start/stop the SQL Server service as you need some minimum administration rights.
    Please , could you tell us whether the lost rights are on the Windows 7 level or on your SQL Server level ?
    To connect , you should have at least the db_datareader and db_datawriter permissions on the databases you are using ( I would add db_backupoperator to restore a database in case of errors )
    You should have the public and maybe dbcreator ( if you have to create new databases ) and of course your login must be enabled and have the permission to connect to the database engine .
    As we don't know what your are doing with the databases with your SQL Server Developer edition , we are unable to help you without more precise information.
    We are waiting for your feedback to try to help you more efficiently.
    Papy
    Mark Post as helpful if it provides any help.Otherwise,leave it as it is.

  • Yellowfin, Java embeddable Business Intelligence Developer version

    Yellowfin the leading provider of embeddable Business Intelligence to Java OEM's now offers free developer/Evaluation version access.
    The Yellowfin evaluation license includes a fully functional version of the report writer and dashboard management for a single user. It also includes user manuals / product documentation and a tutorial database with sample data. Multicast and user management functionality is not included in the evaluation version.
    Unlike many other BI product suppliers, Yellowfin is making BI easy for Java OEM providers to offer enterprise level BI in their core applications. Yellowfin supports wider
    distribution across the organisation through three key philosophies. These include ease of use, ease of deployment and ease of integration.
    Database agnostic, "pay as you like pricing" and full integration without branding are just some of the innovations Yellowfin OEM's enjoy.
    Main --> www.yellowfin.com.au
    Developer Version Download --> http://www.yellowfin.com.au/YFRequestEval.i4

    I found the solution on my own. For whatever reason the installation fails with this error if you try to use a sql server instance that already existed before etup. If you choose to create a new instance during the setup, the installation succeeded (but
    there is no new instance installed, but the one used that was in place before) - so to me this looks like a bug in the setup program.
    However this solved the problem.

  • MS Access 2010 and Oracle SQL Developer Version 4.0.3.16 Error

    OS: Windows 7 Enterprise
    System Type: 64-bit Operating System
    I can not get MS Access 2010 to work/open with SQL Developer version 4.0.3.16.
    ERROR when testing connection to MS Access 2010
    "Status : Failure -Test failed: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified"
    I added the 32-bit ODBC data source for the MS Access I am trying to use with SQL Developer version 4.0.3.16 with the "C:\Windows\SysWOW64\odbcad32.exe" application, but I still get the same error.
    I appears that SQL Developer version 4.0.3.16.is looking at the 64-bit driver (ODBC Data Source) and I have no idea to direct SQL Developer version 4.0.3.16 to use the 32-bit driver (ODBC Data Source) when opening MS Access 2010.
    Thank you in advance for your advice.

    I downloaded the SQL Developer version 4.0.3.16 "sqldeveloper-4.0.3.16.84-x64.zip" that included the jre.
    How do I check which Java JDK I am running (32-bit versuns 64-bit)?
    In the command prompt I use "java -version" and I get this message "java is not recognized as an internal or external command"

  • I recieve the following error when running an executable ("This VI is not Executable. The full development version of Labview is required to fix the errors"

    I recieve the following error when trying to build and run a labview executable. I am able to build the executable but when trying to run the executable, a pop up window comes up asking the user to select a dll. (please see screen shot attached). Once the DLL is selected, I get the error that This VI is not Executable. The full development version of Labview is required to fix the errors. (please see screen shot attached). I have also attached a snapshot of the project window.
    I have the professional development system
    I can run the main VI
    all the required DLL's are in the dependencies section of the project window.
    I am trying to find the root cause of this error but to no avail. can anyone give me a clue to what i am missing here. Any suggestions on where i should look to find the problem ?
    Thanks in advance to all labview users for your help
    Attachments:
    project window.PNG ‏36 KB

    other PNG
    Attachments:
    Broken Arrow on EXE.PNG ‏179 KB

Maybe you are looking for