SQL executes taking for ever menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    SQL executes taking for ever

    I am executing the new project silvermoon DB. IT will take 30min to only insert 5000 of 162034. Does any one know why? And dont say "Because its big?" Because thats not the reason +Rep
    ahhhh

    SQL executes taking for ever
  2. #2
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try closing all programs running and let only your SQL manager to work... maybe thats the prob

  3. #3
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nope and btw weres the cracked navicat on mmowned? Im going to see if that will work.
    ahhhh

  4. #4
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please some one help +Rep x4 no joke!
    ahhhh

  5. #5
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok here is a download link for navicat plus crack http://w13.easy-share.com/1114598.html

  6. #6
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1192
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this isnt a warez forum and it may be your comp
    If you need me you have my skype, if you don't have my skype then you don't need me.

  7. #7
    Tom_2001's Avatar Member
    Reputation
    177
    Join Date
    Oct 2007
    Posts
    609
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I agree with nano this seems like your pc is F****ing up..

  8. #8
    C.C.'s Avatar Contributor
    Reputation
    101
    Join Date
    May 2007
    Posts
    214
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Use SQLYog? Its executes faster.

    -Bloodkip

  9. #9
    Ophie's Avatar Active Member
    Reputation
    66
    Join Date
    Aug 2006
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try opening the sql file and delete the comments. It worked for me in the past. Oh and use SQLyog.

  10. #10
    Steph's Avatar Member
    Reputation
    166
    Join Date
    Dec 2007
    Posts
    695
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its the difference between SQL dumps and importing seperate tables like NCDB.

    Personally, as this has only been happening with the last couple of weeks of dumps its either:

    A) a problem with the mysql programs dumping the files in the first place
    B) an update to the databases themselves which causes a problem with the import

    I honestly dont know what it is, but it's affecting lots of people, where as a few weeks ago, I never noticed it.

  11. #11
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try using a tool.bat file !
    (get it from ncdb svn)
    change the info inside the bat file with notepad and the DB will be executed way faster then any SQL manager

    grtz

  12. #12
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok can you help me a little tho
    ahhhh

  13. #13
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    set user=root
    set pass=root
    REM  WorldDB  -  is the World Database
    REM If you do not have them seperated then set them to the same values
     set WorldDB=ncdb023
    REM ############################################################################
    REM #
    REM #    A D V A N C E D   U S E R   C O N F I G U R A T I O N   A R E A
    REM #
    REM ############################################################################
    set port=3306
    set server=localhost
    REM ############################################################################
    REM #
    REM #     D O   N O T   M O D I F Y   B E Y O N D   T H I S   P O I N T
    REM #
    REM ############################################################################
    if %user% == CHANGEME GOTO id10t
    if %pass% == CHANGEME GOTO id10t
    :menu
    cls
    ECHO.
    ECHO.
    ECHO        ####################################
    ECHO        #######     Next Chapter     #######
    ECHO        ######        Database        ######
    ECHO        #######     Import Tool      #######
    ECHO        ####################################
    ECHO.
    ECHO        Please type the letter for the option:
    ECHO.
    ECHO         w = Install Full-DB.sql
    ECHO.
    ECHO         Edited by latruwski
    ECHO.
    ECHO.
    ECHO         x - Exit
    ECHO.
    set /p l=            Enter Letter:
    if %l%==* goto error
    if %l%==w goto world
    if %l%==W goto world
    if %l%==u goto update
    if %l%==U goto update
    if %l%==x goto quit
    if %l%==X goto quit
    goto error
    :world
    CLS
    ECHO.
    ECHO.
    ECHO [Importing] World database import Started...
    mysql -h %server% --user=%user% --password=%pass% --port=%port% %WorldDB% < Full-DB.sql
    ECHO [Importing] Finished
    ECHO.
    PAUSE    
    GOTO menu
    :update
    CLS
    ECHO.
    ECHO.
    ECHO [Importing] World database update Started...
    mysql -h %server% --user=%user% --password=%pass% --port=%port% %WorldDB% < Full-Update.sql
    ECHO [Importing] Updated Finished!
    ECHO.
    PAUSE    
    GOTO menu
    :error
    CLS
    ECHO.
    ECHO.
    ECHO [ERROR] An error has occured, you will be directed back to the
    ECHO [ERROR] main menu.
    PAUSE    
    GOTO menu
    :id10t
    CLS
    ECHO.
    ECHO.
    ECHO [FAILURE] You did not change the proper directives in this file.
    ECHO [FAILURE] Please edit this script and fill in the proper MYSQL Information.
    ECHO [FAILURE] When the information is correct: Please Try Again.
    PAUSE    
    GOTO quit  
    :quit
    if you are running your DB on localhost then you only need to change the upper part (in green) with password and username for your DB... then rename the SQL file (DB you wnt to import) to Full-DB.sql

    save this as a .bat file for example tool.bat

    then just execute it and select "import world DB"

    grtz

    note, i edited the tool.bat for u:
    Filebeam - Free Fast File Hosting

    so you can use this if your DB is on localhost... just edit this txt file i uploaded and change your DB info (posted above between code tags in green)
    set user=root
    set pass=root
    set WorldDB=ncdb023
    change that to your info... username, password and databasename
    rename the tool.txt to tool.bat and execute !

  14. #14
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    always helping latruwski hope that helped you out nightmare

  15. #15
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Woot you rule +rep x4

    EDIT: Dang it can't got to spreed rep around
    ahhhh

Page 1 of 2 12 LastLast

Similar Threads

  1. how to keep navicat for ever without a crack
    By spleee101 in forum WoW EMU Guides & Tutorials
    Replies: 13
    Last Post: 04-26-2008, 12:24 PM
  2. "For-ever-falling holes"
    By Daftz in forum World of Warcraft Exploration
    Replies: 10
    Last Post: 01-21-2008, 03:17 PM
  3. keep your broom for ever
    By orangegold in forum World of Warcraft Exploits
    Replies: 22
    Last Post: 10-21-2007, 02:45 PM
  4. D: Banned for ever
    By arcaton in forum Community Chat
    Replies: 8
    Last Post: 09-01-2007, 01:46 AM
  5. Invisible fall for ever > walkable
    By HaSh in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 01-11-2007, 02:43 AM
All times are GMT -5. The time now is 07:53 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search