Para ver las tablas de una base de datos hsqldb (antiguamente hypersonic) a través de una interfaz gráfica realizamos lo siguiente: Descargamos el archivo hsqldb.zip desde la página oficial de HSQLDB: hsqldb Lo descomprimimos, se crea la carpeta hsqldb Abrimos una consola y navegamos…
Limites PostgreSQL
Algunos de los limites físicos de PostgreSQL son: Limite Valor ——————————————————————– Maximo tamaño base de dato Ilimitado (Depende de tu sistema de almacenamiento) Maximo tamaño de tabla 32 TB Maximo tamaño de fila 1.6 TB Maximo tamaño de campo 1…
¿How to insert records with defined table serial field?
This is an example which let you to look at how to create a table with some little definition previosuly created. It Uses: null command serial data type (so usefull for automatic id creation, it let to avoid using sequence…
Replacing MySQL’s Auto-increment on PostgreSQL 8.4
In MySQL, to create an auto-incrementing field called someID, you would do something like this: Listing 9 listing-9.sql create table myTable ( someID int not null auto_increment, name varchar(255) not null, primary key (someID) ); In PostgreSQL, to get the same…
How to restore a db from console in postgres???
this is the command :c:\program Files\postgres\bin> pg_restore.exe -u postgres -d controltrack -v c:\archivoBD.backup