<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.idempiere.org/w-en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PatSoftware</id>
	<title>iDempiere en - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.idempiere.org/w-en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PatSoftware"/>
	<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/en/Special:Contributions/PatSoftware"/>
	<updated>2026-04-27T03:32:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Importing_DB_Seed_Manually&amp;diff=19901</id>
		<title>Importing DB Seed Manually</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Importing_DB_Seed_Manually&amp;diff=19901"/>
		<updated>2022-01-15T14:58:46Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: Command create extension. Added info when executed on windows System. Otherwise command goes in error.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- breadcrumb --&amp;gt;&lt;br /&gt;
&amp;lt;font size=-2&amp;gt;&lt;br /&gt;
&amp;amp;lArr;&lt;br /&gt;
[[Installing_iDempiere|Table of Contents]] |&lt;br /&gt;
[[Setting up Eclipse]] |&lt;br /&gt;
Importing DB Seed Manually |&lt;br /&gt;
[[Configuring iDempiere within Eclipse]]&lt;br /&gt;
&amp;amp;rArr;&lt;br /&gt;
&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note this procedure is intended for technical people wanting to configure iDempiere to run in Eclipse, there is an easier mechanism on the installers to create the database.&lt;br /&gt;
&lt;br /&gt;
Let's check the steps to create an idempiere postgres database:&lt;br /&gt;
&lt;br /&gt;
== Create adempiere user ==&lt;br /&gt;
&lt;br /&gt;
 sudo su - postgres&lt;br /&gt;
 psql -U postgres -c &amp;quot;CREATE ROLE adempiere SUPERUSER LOGIN PASSWORD 'adempiere'&amp;quot;&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
'''WARNING:''' Of course this is an insecure password, it is recommended that you set up a proper password for this user account&lt;br /&gt;
&lt;br /&gt;
== Create the idempiere database ==&lt;br /&gt;
&lt;br /&gt;
 createdb  --template=template0 -E UNICODE -O adempiere -U adempiere idempiere&lt;br /&gt;
 psql -d idempiere -U adempiere -c &amp;quot;ALTER ROLE adempiere SET search_path TO adempiere, pg_catalog&amp;quot;&lt;br /&gt;
&lt;br /&gt;
When asked the password please provide the adempiere password that you set up in the previous step.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' See [[Talk:Importing_DB_Seed_Manually|Discussion]] tab for additional notes.&lt;br /&gt;
&lt;br /&gt;
== Installing UUID (required to apply some migration scripts) ==&lt;br /&gt;
&lt;br /&gt;
Some migration scripts references the function generate_uuid, unfortunately the way to install this is different on different postgres versions, so we were not able to include it by default on the DB seed, next are the instructions per version:&lt;br /&gt;
&lt;br /&gt;
* If you're running postgresql 9.6, remember from the prerequisites you must have installed postgresql-contrib to make the generate_uuid function to work (in some operating systems and postgresql versions this is the default and is not required)&lt;br /&gt;
* Run the command CREATE EXTENSION &amp;quot;uuid-ossp&amp;quot; using psql&lt;br /&gt;
 psql -d idempiere -U adempiere -c 'CREATE EXTENSION &amp;quot;uuid-ossp&amp;quot;'&lt;br /&gt;
If command is executed on a Windows System change the instruction with &amp;quot;CREATE EXTENSION \&amp;quot;uuid-ossp\&amp;quot;&amp;quot;, see the replacement of characters (&amp;quot;) with (\&amp;quot;) and (') with (&amp;quot;) on beginning and on the end statement, otherwise command goes in error.&lt;br /&gt;
&lt;br /&gt;
== Import the seed ==&lt;br /&gt;
&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 jar xvf $IDEMPIERE_REPOSITORY/org.adempiere.server-feature/data/seed/Adempiere_pg.jar&lt;br /&gt;
 psql -d idempiere -U adempiere -f Adempiere_pg.dmp&lt;br /&gt;
&lt;br /&gt;
''This tutorial is brought to you by [[User:CarlosRuiz|Carlos Ruiz]] from [https://www.bx-service.com/ BX Service GmbH].  Feel free to improve directly or suggest using the Discussion tab.&lt;br /&gt;
&lt;br /&gt;
[[Category:User Manual|I]]&lt;br /&gt;
[[Category:Installation|E]] &lt;br /&gt;
[[Category:Installation Eclipse]] &lt;br /&gt;
[[Category:Development‏‎]]&lt;br /&gt;
[[Category:Developer documentation‏‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- breadcrumb --&amp;gt;&lt;br /&gt;
&amp;lt;font size=-2&amp;gt;&lt;br /&gt;
&amp;amp;lArr;&lt;br /&gt;
[[Installing_iDempiere|Table of Contents]] |&lt;br /&gt;
[[Setting up Eclipse]] |&lt;br /&gt;
Importing DB Seed Manually |&lt;br /&gt;
[[Configuring iDempiere within Eclipse]]&lt;br /&gt;
&amp;amp;rArr;&lt;br /&gt;
&amp;lt;/font&amp;gt;&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User:PatSoftware&amp;diff=16073</id>
		<title>User:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User:PatSoftware&amp;diff=16073"/>
		<updated>2020-01-14T15:36:52Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: /* Contact Details: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Company Web Site: [https://www.patSoftware.it PAT software]&amp;lt;br&amp;gt;&lt;br /&gt;
PAT software - IDempiere Company web Site page: [https://www.patsoftware.it/idempiere IDempiere]&amp;lt;br&amp;gt;&lt;br /&gt;
Contact Name : Antonio Patarozzi&amp;lt;br&amp;gt;&lt;br /&gt;
City: Rimini - Emilia Romagna&amp;lt;br&amp;gt;&lt;br /&gt;
Country: Italy&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User:PatSoftware&amp;diff=16072</id>
		<title>User:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User:PatSoftware&amp;diff=16072"/>
		<updated>2020-01-14T15:35:56Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: Created page with &amp;quot;About  Contact Details: Web: [https://www.patSoftware.it PAT software] Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere] Contact Name : Antonio Patarozzi C...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&amp;lt;br&amp;gt;&lt;br /&gt;
PAT software - IDempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&amp;lt;br&amp;gt;&lt;br /&gt;
Contact Name : Antonio Patarozzi&amp;lt;br&amp;gt;&lt;br /&gt;
City: Rimini - Emilia Romagna&amp;lt;br&amp;gt;&lt;br /&gt;
Country: Italy&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16071</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16071"/>
		<updated>2020-01-14T15:04:07Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: /* Contact Details: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&amp;lt;br&amp;gt;&lt;br /&gt;
PAT software - IDempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&amp;lt;br&amp;gt;&lt;br /&gt;
Contact Name : Antonio Patarozzi&amp;lt;br&amp;gt;&lt;br /&gt;
City: Rimini - Emilia Romagna&amp;lt;br&amp;gt;&lt;br /&gt;
Country: Italy&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16070</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16070"/>
		<updated>2020-01-14T15:03:48Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: /* Contact Details: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&amp;lt;br&amp;gt;&lt;br /&gt;
PAT software - Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&amp;lt;br&amp;gt;&lt;br /&gt;
Contact Name : Antonio Patarozzi&amp;lt;br&amp;gt;&lt;br /&gt;
City: Rimini - Emilia Romagna&amp;lt;br&amp;gt;&lt;br /&gt;
Country: Italy&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16069</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16069"/>
		<updated>2020-01-14T15:03:25Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: /* Contact Details: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&amp;lt;br&amp;gt;&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&amp;lt;br&amp;gt;&lt;br /&gt;
Contact Name : Antonio Patarozzi&amp;lt;br&amp;gt;&lt;br /&gt;
City: Rimini - Emilia Romagna&amp;lt;br&amp;gt;&lt;br /&gt;
Country: Italy&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16068</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16068"/>
		<updated>2020-01-14T15:02:30Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16067</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16067"/>
		<updated>2020-01-14T15:01:58Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: /* Contact Details: */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact 2 ==&lt;br /&gt;
&lt;br /&gt;
Test&lt;br /&gt;
&lt;br /&gt;
== Contact Details: ==&lt;br /&gt;
&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16066</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16066"/>
		<updated>2020-01-14T15:01:09Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: /* Contact 2 */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;br /&gt;
&lt;br /&gt;
== Contact 2 ==&lt;br /&gt;
&lt;br /&gt;
Test&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16065</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16065"/>
		<updated>2020-01-14T15:00:31Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
Contact Name : Antonio Patarozzi&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16064</id>
		<title>User talk:PatSoftware</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User_talk:PatSoftware&amp;diff=16064"/>
		<updated>2020-01-14T14:59:02Z</updated>

		<summary type="html">&lt;p&gt;PatSoftware: Created page with &amp;quot;About  Contact Details: Web: [https://www.patSoftware.it PAT software] Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere] City: Rimini - Emilia Romagna Coun...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About&lt;br /&gt;
&lt;br /&gt;
Contact Details:&lt;br /&gt;
Web: [https://www.patSoftware.it PAT software]&lt;br /&gt;
Idempiere Site page: [https://www.patsoftware.it/idempiere IDempiere]&lt;br /&gt;
City: Rimini - Emilia Romagna&lt;br /&gt;
Country: Italy&lt;/div&gt;</summary>
		<author><name>PatSoftware</name></author>
	</entry>
</feed>