SlideShare a Scribd company logo
Uniface 9.7.01
en PostgreSQL,
de eerste ervaringen
Arjen van Vliet
Solution Consultant
donderdag 26 november 2015
Advanced Development Technology
www.uniface.com
Advanced Development Technology
Agenda
1. Wat gebeurt er in de database markt?
2. Kenmerken van PostgreSQL
3. Stappenplan installatie PostgreSQL,
Uniface 9.7.01 en demo
4. ‘Hello World’ demo
5. PostgreSQL documentatie en features
www.uniface.com
Advanced Development Technology
Toenemend gebruik Open Source RDBMS
www.uniface.com
Advanced Development Technology
Een stukje geschiedenis…
www.uniface.com
Advanced Development Technology
Eén van onze partners…
www.uniface.com
Advanced Development Technology
Kostenreductie (80-85%)…
http://viag.nl/assets/53872692d5238027f700001f/Kostenreductie%20binnen%20een%20Oracle%20landschap%20definitief.pdf
www.uniface.com
Advanced Development Technology
Consultancy en support mogelijk
http://www.comparex-group.com/web/nl/nl/comparex/blogs/big-data_analytics/BLOG-2015-het-jaar-van-Postgres.htm
www.uniface.com
Advanced Development Technology
Ranking the Stars…
http://db-engines.com/en/ranking
www.uniface.com
Advanced Development Technology
Gartner Magic Quadrant for Operational DBMS
http://www.gartner.com/technology/reprints.do?id=1-23A415Q&ct=141020&st=sb
www.uniface.com
Advanced Development Technology
"post-gress-Q-L", afgekort tot "postgres"
Open source ORDBMS
Schaalbaar
Voldoet aan standaarden (SQL:2011, ACID)
Cross-platform (Linux, FreeBSD, Solaris, Microsoft
Windows, Mac OS X)
Alternatief voor andere open source database
management systemen (MariaDB, Firebird)
Alternatief voor proprietary database systemen
(Oracle, MySQL, Sybase, DB2, Microsoft SQL Server)
www.uniface.com
Advanced Development Technology
www.uniface.com
Advanced Development Technology
Doel van de demo
Demonstreren van de PGS connector,
middels een ‘Hello World’ voorbeeld,
gebruikmakend van de nieuwe
PostgreSQL driver in Uniface 9.7.01
www.uniface.com
Advanced Development Technology
Stappen demo PGS connector [1]
1. Downloaden & installeren PostgreSQL
(EDB distribution, version 9.4.4., 64 bit).
2. Downloaden & installeren PostgreSQL
ODBC driver (32 bit) via ‘Stack Builder’.
3. ODBC Data Source aanmaken in
Windows Control Panel.
4. Uniface licentie voor PGS connector.
5. Aanpassen dbms.asn (DEF path van
SLE naar PGS).
www.uniface.com
Advanced Development Technology
Stappen demo PGS connector [2]
6. Creëer model, entity, database table.
7. Creëer FastForm met database path via
PGS connector.
8. Demo
a. Form: Create, Retrieve, Update, Delete data
b. IDF SQL workbench demo
c. Tabel bekijken in pgAdmin console
www.uniface.com
Advanced Development Technology
Stap 1 en 2
1. Downloaden and installeren PostgreSQL:
http://www.postgresql.org/download/windows/
http://www.enterprisedb.com/products-services-training/pgdownload#windows
(64 bit op mijn 64 bit Windows VM)
2. Installeren ODBC driver
(32 bit vanwege 32 bit Uniface IDF, 64 bit mogelijk in Uniface
deployment)
Dit wordt gedaan in ‘Application Stack Builder’, na initiële
installatie.
www.uniface.com
Advanced Development Technology
pgAdmin III
www.uniface.com
Advanced Development Technology
Stap 3: ODBC Data Source
Control Panel → System and Security →
Administrative Tools
www.uniface.com
Advanced Development Technology
Stap 4: PGS license
www.uniface.com
Advanced Development Technology
Stap 5: dbms.asn (origineel)
;- Development database
[DRIVER_SETTINGS]
SLE U1.0
USYS$SLE_PARAMS create db = on, identifiers = quoted
[PATHS]
; Path to the SQLite database for the Uniface Repository:
$DBMS SLE:C:UsersArjen van VlietProjectsUniface 97 Developmentprojectdbmsusys.db
; Path to the SQLite database for User defined data:
$DBMS_DEF SLE:C:UsersArjen van VlietProjectsUniface 97 Developmentprojectdbmsuserdata.db
$SYS $DBMS
$UUU $DBMS
$IDF $DBMS
$DEF $DBMS_DEF
www.uniface.com
Advanced Development Technology
Stap 5: dbms.asn (aangepast)
;- Development database
[DRIVER_SETTINGS]
SLE U1.0
USYS$SLE_PARAMS create db = on, identifiers = quoted
PGS U1.0
USYS$PGS_PARAMS create db = on, identifiers = quoted, procs = off
[PATHS]
; Path to the SQLite database for the Uniface Repository:
$DBMS SLE:C:UsersArjen van VlietProjectsUniface 97 Developmentprojectdbmsusys.db
; Path to the PostgreSQL database for User defined data:
$DBMS_DEF PGS:PostgreSQL35W:public|dba|dbapwd
$SYS $DBMS
$UUU $DBMS
$IDF $DBMS
$DEF $DBMS_DEF
www.uniface.com
Advanced Development Technology
Stap 6: Creëer Model,Entity,Fields
www.uniface.com
Advanced Development Technology
Stap 6: Creëer Tabel
Utilities → Deployment → SQL Table
create table "person"
(
"id" character(2) not null,
"name" character varying(40) null,
constraint "person_pk" primary key
("id")
);
grant delete, insert, references, select, update on "person"
to public
;
create or replace function "person_DEL"(
...
create or replace function "person_UPD"(
...
create or replace function "person_INS"(
...
create or replace function "person_FET"(
...
www.uniface.com
Advanced Development Technology
Stap 7: Creëer FastForm
www.uniface.com
Advanced Development Technology
Stap 8: Demo
a. Form: Create, Retrieve, Update, Delete data
b. IDF SQL workbench demo
SELECT name FROM sqlite_master WHERE type='table';
versus
SELECT * FROM pg_catalog.pg_tables
c. Tabel bekijken in pgAdmin console
www.uniface.com
Advanced Development Technology
References → ULibrary
http://unifaceinfo.com/docs/0907/Uniface_Library_HTML/ulibrary/PGS_0A532170DC45407DB1C7521CE561261C.html
www.uniface.com
Advanced Development Technology
PGS connector features
PGS Connector Option Definition
checks Enable or disable testing for the existence of tables and stored procedures.
connection pooling Determines whether connection pooling is enabled.
connections Set the number of concurrent connections the connector is allowed to maintain.
entity names Specifies the case for table names.
hold statements Specify whether statements remain open after a commit.
identifiers Enable all characters to be used in an object or field, including diacritical signs.
keysetcursor Set the cursor type to SQL_CURSOR_KEYSET_DRIVEN to improve performance when using the order by clause on
large tables.
lock isolation Set the isolation level for the database transactions of the connector.
logon timeout Set the number of seconds to wait for a successful logon before yielding.
maxlockwait Set the period a database operation will wait for a database lock to be released.
open statements Specify the number of statements held open by the connector.
procedures Specify whether the connector will use stored procedures to update, insert, delete, and fetch data, or use SQL
instead.
ri Specify whether Uniface or the DBMS is responsible for maintaining referential integrity.
segmented fields Specify whether segmented fields will be stored to large object data types or to overflow tables.
smp Include the entire Unicode range (SMP) to enable storage of the entire Unicode range (or SMP) in W packing code
fields.
step size Set the number of rows the connector selects from the DBMS in each step of the Uniface stepped hitlist.
stmtcache Specify whether Uniface should enable or disable the Uniface cache mechanism for statements.
http://unifaceinfo.com/docs/0907/Uniface_Library_HTML/ulibrary/pgsConnectorOptions_3C83FF44BD3140CBA23BA79B9C882324.html
www.uniface.com
Advanced Development Technology
Follow us online
uniface.com
Thank You!
arjen.van.vliet@uniface.com
Advanced Development Technology
Q&A

More Related Content

Similar to Uniface 9.7 en PostgreSQL

Sqlmap
SqlmapSqlmap
StorageQuery: federated querying on object stores, powered by Alluxio and Presto
StorageQuery: federated querying on object stores, powered by Alluxio and PrestoStorageQuery: federated querying on object stores, powered by Alluxio and Presto
StorageQuery: federated querying on object stores, powered by Alluxio and Presto
Alluxio, Inc.
 
SQL Server 2019 ctp2.2
SQL Server 2019 ctp2.2SQL Server 2019 ctp2.2
SQL Server 2019 ctp2.2
Gianluca Hotz
 
OpenSolaris Introduction
OpenSolaris IntroductionOpenSolaris Introduction
OpenSolaris Introduction
satyajit_t
 
Sql interview question part 10
Sql interview question part 10Sql interview question part 10
Sql interview question part 10
kaashiv1
 
Ebook10
Ebook10Ebook10
Ebook10
kaashiv1
 
E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)
Chiranjeevi Adi
 
Alejandro_Laverdet - EN
Alejandro_Laverdet - ENAlejandro_Laverdet - EN
Alejandro_Laverdet - EN
Alejandro Laverdet
 
Normalizing x pages web development
Normalizing x pages web development Normalizing x pages web development
Normalizing x pages web development
Shean McManus
 
Dataverse in the European Open Science Cloud
Dataverse in the European Open Science CloudDataverse in the European Open Science Cloud
Dataverse in the European Open Science Cloud
vty
 
Neo4j Vision and Roadmap
Neo4j Vision and Roadmap Neo4j Vision and Roadmap
Neo4j Vision and Roadmap
Neo4j
 
SULTHAN's PHP, MySQL & wordpress
SULTHAN's PHP, MySQL & wordpressSULTHAN's PHP, MySQL & wordpress
SULTHAN's PHP, MySQL & wordpress
SULTHAN BASHA
 
System Architecture Exploration Training Class
System Architecture Exploration Training ClassSystem Architecture Exploration Training Class
System Architecture Exploration Training Class
Deepak Shankar
 
Compare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdf
Compare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdfCompare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdf
Compare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdf
arihantplastictanksh
 
Dean Hagen
Dean HagenDean Hagen
Dean Hagen
Dean Hagen
 
Bintan
BintanBintan
Web Cloud Computing SQL Server - Ferrara University
Web Cloud Computing SQL Server  -  Ferrara UniversityWeb Cloud Computing SQL Server  -  Ferrara University
Web Cloud Computing SQL Server - Ferrara University
antimo musone
 
Dairy management system project report..pdf
Dairy management system project report..pdfDairy management system project report..pdf
Dairy management system project report..pdf
Kamal Acharya
 
Sql interview question part 4
Sql interview question part 4Sql interview question part 4
Sql interview question part 4
kaashiv1
 
Sql interview question part 4
Sql interview question part 4Sql interview question part 4
Sql interview question part 4
kaashiv1
 

Similar to Uniface 9.7 en PostgreSQL (20)

Sqlmap
SqlmapSqlmap
Sqlmap
 
StorageQuery: federated querying on object stores, powered by Alluxio and Presto
StorageQuery: federated querying on object stores, powered by Alluxio and PrestoStorageQuery: federated querying on object stores, powered by Alluxio and Presto
StorageQuery: federated querying on object stores, powered by Alluxio and Presto
 
SQL Server 2019 ctp2.2
SQL Server 2019 ctp2.2SQL Server 2019 ctp2.2
SQL Server 2019 ctp2.2
 
OpenSolaris Introduction
OpenSolaris IntroductionOpenSolaris Introduction
OpenSolaris Introduction
 
Sql interview question part 10
Sql interview question part 10Sql interview question part 10
Sql interview question part 10
 
Ebook10
Ebook10Ebook10
Ebook10
 
E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)
 
Alejandro_Laverdet - EN
Alejandro_Laverdet - ENAlejandro_Laverdet - EN
Alejandro_Laverdet - EN
 
Normalizing x pages web development
Normalizing x pages web development Normalizing x pages web development
Normalizing x pages web development
 
Dataverse in the European Open Science Cloud
Dataverse in the European Open Science CloudDataverse in the European Open Science Cloud
Dataverse in the European Open Science Cloud
 
Neo4j Vision and Roadmap
Neo4j Vision and Roadmap Neo4j Vision and Roadmap
Neo4j Vision and Roadmap
 
SULTHAN's PHP, MySQL & wordpress
SULTHAN's PHP, MySQL & wordpressSULTHAN's PHP, MySQL & wordpress
SULTHAN's PHP, MySQL & wordpress
 
System Architecture Exploration Training Class
System Architecture Exploration Training ClassSystem Architecture Exploration Training Class
System Architecture Exploration Training Class
 
Compare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdf
Compare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdfCompare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdf
Compare the capabilities of the Microsoft Access, Microsoft SQL Serv.pdf
 
Dean Hagen
Dean HagenDean Hagen
Dean Hagen
 
Bintan
BintanBintan
Bintan
 
Web Cloud Computing SQL Server - Ferrara University
Web Cloud Computing SQL Server  -  Ferrara UniversityWeb Cloud Computing SQL Server  -  Ferrara University
Web Cloud Computing SQL Server - Ferrara University
 
Dairy management system project report..pdf
Dairy management system project report..pdfDairy management system project report..pdf
Dairy management system project report..pdf
 
Sql interview question part 4
Sql interview question part 4Sql interview question part 4
Sql interview question part 4
 
Sql interview question part 4
Sql interview question part 4Sql interview question part 4
Sql interview question part 4
 

More from Arjen van Vliet

Uniface 9.7 64 bit deployment
Uniface 9.7 64 bit deploymentUniface 9.7 64 bit deployment
Uniface 9.7 64 bit deployment
Arjen van Vliet
 
Uniface 9.7 Standard vs. Classic Deployment Lecture
Uniface 9.7 Standard vs. Classic Deployment LectureUniface 9.7 Standard vs. Classic Deployment Lecture
Uniface 9.7 Standard vs. Classic Deployment Lecture
Arjen van Vliet
 
Uniface 9.7 GUI Modernization Lecture
Uniface 9.7 GUI Modernization LectureUniface 9.7 GUI Modernization Lecture
Uniface 9.7 GUI Modernization Lecture
Arjen van Vliet
 
Uniface Anywhere version 5
Uniface Anywhere version 5Uniface Anywhere version 5
Uniface Anywhere version 5
Arjen van Vliet
 
Versiebeheer van database changes
Versiebeheer van database changesVersiebeheer van database changes
Versiebeheer van database changes
Arjen van Vliet
 
Team Leadership
Team LeadershipTeam Leadership
Team Leadership
Arjen van Vliet
 
Performance analyse Face to Face
Performance analyse Face to FacePerformance analyse Face to Face
Performance analyse Face to Face
Arjen van Vliet
 

More from Arjen van Vliet (7)

Uniface 9.7 64 bit deployment
Uniface 9.7 64 bit deploymentUniface 9.7 64 bit deployment
Uniface 9.7 64 bit deployment
 
Uniface 9.7 Standard vs. Classic Deployment Lecture
Uniface 9.7 Standard vs. Classic Deployment LectureUniface 9.7 Standard vs. Classic Deployment Lecture
Uniface 9.7 Standard vs. Classic Deployment Lecture
 
Uniface 9.7 GUI Modernization Lecture
Uniface 9.7 GUI Modernization LectureUniface 9.7 GUI Modernization Lecture
Uniface 9.7 GUI Modernization Lecture
 
Uniface Anywhere version 5
Uniface Anywhere version 5Uniface Anywhere version 5
Uniface Anywhere version 5
 
Versiebeheer van database changes
Versiebeheer van database changesVersiebeheer van database changes
Versiebeheer van database changes
 
Team Leadership
Team LeadershipTeam Leadership
Team Leadership
 
Performance analyse Face to Face
Performance analyse Face to FacePerformance analyse Face to Face
Performance analyse Face to Face
 

Recently uploaded

Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......
Sachin Paul
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
soxrziqu
 
Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024
ElizabethGarrettChri
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
aqzctr7x
 
A presentation that explain the Power BI Licensing
A presentation that explain the Power BI LicensingA presentation that explain the Power BI Licensing
A presentation that explain the Power BI Licensing
AlessioFois2
 
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
nuttdpt
 
社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .
NABLAS株式会社
 
Experts live - Improving user adoption with AI
Experts live - Improving user adoption with AIExperts live - Improving user adoption with AI
Experts live - Improving user adoption with AI
jitskeb
 
writing report business partner b1+ .pdf
writing report business partner b1+ .pdfwriting report business partner b1+ .pdf
writing report business partner b1+ .pdf
VyNguyen709676
 
一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理
一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理
一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理
1tyxnjpia
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
Social Samosa
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
Lars Albertsson
 
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
oaxefes
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
bmucuha
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
v7oacc3l
 
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
ywqeos
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理
一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理
一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理
ytypuem
 
DSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelinesDSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelines
Timothy Spann
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
SaffaIbrahim1
 
Cell The Unit of Life for NEET Multiple Choice Questions.docx
Cell The Unit of Life for NEET Multiple Choice Questions.docxCell The Unit of Life for NEET Multiple Choice Questions.docx
Cell The Unit of Life for NEET Multiple Choice Questions.docx
vasanthatpuram
 

Recently uploaded (20)

Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
 
Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
A presentation that explain the Power BI Licensing
A presentation that explain the Power BI LicensingA presentation that explain the Power BI Licensing
A presentation that explain the Power BI Licensing
 
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
 
社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .
 
Experts live - Improving user adoption with AI
Experts live - Improving user adoption with AIExperts live - Improving user adoption with AI
Experts live - Improving user adoption with AI
 
writing report business partner b1+ .pdf
writing report business partner b1+ .pdfwriting report business partner b1+ .pdf
writing report business partner b1+ .pdf
 
一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理
一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理
一比一原版(Sheffield毕业证书)谢菲尔德大学毕业证如何办理
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
 
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
 
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理
一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理
一比一原版(曼大毕业证书)曼尼托巴大学毕业证如何办理
 
DSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelinesDSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelines
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
 
Cell The Unit of Life for NEET Multiple Choice Questions.docx
Cell The Unit of Life for NEET Multiple Choice Questions.docxCell The Unit of Life for NEET Multiple Choice Questions.docx
Cell The Unit of Life for NEET Multiple Choice Questions.docx
 

Uniface 9.7 en PostgreSQL