Component of a database is responsible for ensuring atomicity and durability. May 14, 2022May 14, 2022 administrator Component of a database is responsible for ensuring atomicity and durability.recovery managementWell Done. Your Answer is Correct Keep it Up!concurrency controlstorage managementquery evaluation engine
Which protocol permits release of exclusive locks only at the end of transaction? May 14, 2022May 14, 2022 administrator Which protocol permits release of exclusive locks only at the end of transaction?Two phase locking protocolWell Done. Your Answer is Correct Keep it Up!Graph based protocolStrict two phase locking protocolRigorous Two phase locking protocol
Who developed Python Programming Language? May 14, 2022May 14, 2022 administrator Who developed Python Programming Language?Guido van RossumWell Done. Your Answer is Correct Keep it Up!Rasmus LerdorfWick van RossumNiene Stom
Which statement is true about PostgreSQL data types? September 6, 2021September 6, 2021 administrator Which statement is true about PostgreSQL data types? There is a non-standard PostgreSQL data type, called Geometric data type, which handles 2-dimensional data.Well Done. Your Answer is Correct Keep it Up!n’in CHARACTER(n) represents the number of bytes.Only the INTEGER type can be declared as an array.A large object data type can be used to store data of unlimited size.
Which statement is not true about a PostgreSQL domain? September 6, 2021September 6, 2021 administrator Which statement is not true about a PostgreSQL domain?Domain is a namespace existing between databases and objects such as tables.Well Done. Your Answer is Correct Keep it Up!When defining a domain, you can add a default value and constraints to the original data.A domain can be used as a column type when defining a table.A domain is created by ‘CREATE DOMAIN’.
To restore a PostgreSQL backup created with pg_dump, the following may be used: September 6, 2021September 6, 2021 administrator To restore a PostgreSQL backup created with pg_dump, the following may be used:$ psql -f database_dump.psql database_nameWell Done. Your Answer is Correct Keep it Up! $ psql -r database_dump.psql database_name$ psql -R database_dump.psql database_name $ psql -F database_dump.psql database_name
The __________ database model has the advantage of being able to quickly discover all of the records of one type that are related to a specific record of another type by following the pointers from the starting record. September 6, 2021September 6, 2021 administrator The __________ database model has the advantage of being able to quickly discover all of the records of one type that are related to a specific record of another type by following the pointers from the starting record.networkWell Done. Your Answer is Correct Keep it Up!relationalhierarchicalstructured
To copy a database from server1 to server2, you might use which of the following: September 6, 2021 administrator To copy a database from server1 to server2, you might use which of the following:pg_dump -h server1 database | psql -h server2 databaseWell Done. Your Answer is Correct Keep it Up!pg_copy -h server1 database | psql -h server2 databasepg_dump -h server1 database > pgsql -h server2 databasepg_mv -h server1 database | pgsql -h server2 database
What is “index bloat”? September 6, 2021September 6, 2021 administrator What is “index bloat”?No-longer-needed keys in an index aren’t reclaimed, therefore increasing space required to store an index, as well as time it takes to scan.Well Done. Your Answer is Correct Keep it Up!Index filling up with keys.Indexing inefficiently, like choosing to index timestamps in a table.Indexing too many tables, resulting in inefficient database performance.
What command allows you to edit PostgreSQL queries in your favorite editor ? September 6, 2021September 6, 2021 administrator What command allows you to edit PostgreSQL queries in your favorite editor ?\eWell Done. Your Answer is Correct Keep it Up!\editedit sql #go\ed