Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7944047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:26:49+00:00 2026-06-04T00:26:49+00:00

I would like to know why is this: backup.sql file not being accepted by

  • 0

I would like to know why is this: backup.sql file not being accepted by sqlBuddy, I already created a database named youhand with utf8

sqlBuddy message:

0 statements were executed from the file.
The following errors were reported:
- No database selected
- No database selected
- No database selected
- No database selected
- No database selected
- No database selected
- No database selected
- No database selected
- No database selected
- No database selected

File Content:

--
-- MySQL 5.0.92
-- Mon, 14 May 2012 18:16:43 +0000
--



    CREATE TABLE `comentarios` (
       `id` int(7) not null auto_increment,
       `texto` varchar(500) not null,
       `id_usuario` int(7) not null,
       `id_receta` int(7) not null,
       `fecha` timestamp not null default CURRENT_TIMESTAMP,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=24;


    CREATE TABLE `etiquetas` (
       `id` int(11) not null auto_increment,
       `nombre` varchar(50) not null,
       `id_usuario` int(7) not null,
       `id_pregunta` int(7) not null,
       `lan` int(3) not null,
       `id_consejo` int(7) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=122;

    CREATE TABLE `familias` (
       `id` int(7) not null auto_increment,
       `clave` varchar(100) not null,
       `pagina` varchar(3000) not null,
       `lan` int(2) not null,
       `id_padre` int(7) not null,
       `id_usuario` int(7) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11;


    CREATE TABLE `follows` (
       `id` int(11) not null auto_increment,
       `toid` int(11) not null,
       `fromid` int(11) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=43;


    CREATE TABLE `idiomas` (
       `id` int(11) not null auto_increment,
       `lan` varchar(2) not null,
       `nombre` varchar(25) CHARSET utf8 not null,
       `url` varchar(100) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5;

    CREATE TABLE `notificaciones` (
       `id` int(11) not null auto_increment,
       `id_usuario` int(11),
       `id_from` int(11),
       `msj` varchar(1000),
       `tipo` int(2) default '0',
       `id_item` int(11) default '0',
       `leida` int(1) default '0',
       `tipo_actividad` int(2),
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2;

    CREATE TABLE `helps` (
       `id` int(11) not null auto_increment,
       `titulo` varchar(100) not null,
       `extra` varchar(3000) not null,
       `id_usuario` int(7) not null,
       `id_cultura` int(7) not null,
       `id_familia` int(7) not null,
       `req` text int(2) not null,
       `req_done` int(2) not null,
       `img_src` varchar(200) not null,
       `fecha` timestamp not null default CURRENT_TIMESTAMP,
       `votos` int(7) not null,
       `lan` int(3) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=63;

    CREATE TABLE `textos` (
       `id` int(7) not null auto_increment,
       `clave` varchar(100) not null,
       `texto` varchar(3000) not null,
       `lengua` int(3) not null,
       `id_usuario` int(7) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=664;

    CREATE TABLE `usuarios` (
       `id` int(7) not null auto_increment,
       `fid` bigint(60) not null,
       `alias` varchar(50) not null,
       `pass` varchar(100) not null,
       `mail` varchar(50) not null,
       `fechar` timestamp not null default CURRENT_TIMESTAMP,
       `ultima` timestamp not null default '0000-00-00 00:00:00',
       `img_src` varchar(200) not null,
       `reputacion` int(11) not null,
       `lan` int(3) not null,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=81;

    CREATE TABLE `votos_item` (
       `id` int(7) not null auto_increment,
       `tipo` int(3) not null,
       `valor` int(2) not null,
       `id_usuario` int(7) not null,
       `id_item` int(7) not null,
       `fecha` timestamp not null default CURRENT_TIMESTAMP,
       PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T00:26:53+00:00Added an answer on June 4, 2026 at 12:26 am

    Because it does not know in what database to execute these statements.

    • Either begin the file with a use youhand;
    • Put a database name in front of each table name (so CREATE TABLE youhand.familias)
    • Or start your application so that a database is chosen (commandline parameter or via the GUI)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know whether this is actually possible in Android? When Android
I would like to know how this homepage from Google Docs app is build
I know this is stupid, but how would I do this? I would like
I know this is a weird question to ask, but I would like to
I would like to animate things in 3D space. I know this is possible
I would like to know how to write this inside my hittest if statement:
I would like to know if there are any templates for doing this in
I would like to know how to add menus similar to this to my
I would like to know if there exist algorithms that solves this issue. It
I would like to know, in this ping reply 64 bytes from xxxxxxxx: icmp_req=1

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.