I found a software that make postgres dump...
That's the sql generated:
CREATE TABLE "amici" (
"id" INTEGER NOT NULL,
"versione" CHAR(3) NOT NULL,
"titolo" VARCHAR(50) DEFAULT '',
"testo" TEXT DEFAULT '',
UNIQUE("id"...
How can convert a postgres sql dump script to a valid script for MySql??
I use pg_dump to generate a sql script and ai want convert this to load my db on mySql...
Exist a tools that can make this??
Hi!
Who can send me an expample of a postgres stored procedure that return a recordset....
I found this syntax:
----------------------------
CREATE FUNCTION reffunc2() RETURNS refcursor AS'
DECLARE
ref refcursor;
BEGIN
OPEN ref FOR SELECT * FROM t1;
RETURN ref;
END...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.