<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Imelda</title>
    <description>The latest articles on DEV Community by Imelda (@emelda_z).</description>
    <link>https://dev.to/emelda_z</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1103110%2Fa900e1f0-9012-4603-a47a-885e9dad763d.jpg</url>
      <title>DEV Community: Imelda</title>
      <link>https://dev.to/emelda_z</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/emelda_z"/>
    <language>en</language>
    <item>
      <title>Having "permission denied" error while creating table in DBeavers using postgres?</title>
      <dc:creator>Imelda</dc:creator>
      <pubDate>Wed, 18 Dec 2024 18:30:19 +0000</pubDate>
      <link>https://dev.to/emelda_z/having-permission-denied-error-while-creating-table-in-dbeavers-using-postgres-27il</link>
      <guid>https://dev.to/emelda_z/having-permission-denied-error-while-creating-table-in-dbeavers-using-postgres-27il</guid>
      <description>&lt;p&gt;Sometimes, while using postgres on DBeavers, postgres is usually the root user. Now let's assume you're just a user created by this root user and still are not able to create your own table, you can find your way by creating your own schema.&lt;/p&gt;

&lt;p&gt;Just type as your first line of code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CREATE SCHEMA &amp;lt;schema_name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then go ahead to create your table.&lt;/p&gt;

&lt;p&gt;Note: while&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CREATE TABLE &amp;lt;schema_name&amp;gt;.&amp;lt;table_name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Creates a table in that particular schema,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CREATE TABLE &amp;lt;table_name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Creates a table in the public schema.&lt;/p&gt;

&lt;p&gt;Either way works. Good luck.&lt;/p&gt;

&lt;p&gt;Please leave a feedback if this helps you.&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>database</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>What is Infrastructure as Code (IaC)? Why Is It Transforming DevOps?</title>
      <dc:creator>Imelda</dc:creator>
      <pubDate>Tue, 03 Dec 2024 14:43:43 +0000</pubDate>
      <link>https://dev.to/emelda_z/what-is-infrastructure-as-code-iac-why-is-it-transforming-devops-123o</link>
      <guid>https://dev.to/emelda_z/what-is-infrastructure-as-code-iac-why-is-it-transforming-devops-123o</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is IaC?&lt;/strong&gt; It is infrastructure (CPUs, memory, disk, firewalls, servers, etc.) defined as code within definition files. The idea behind infrastructure as code (IaC) is that you write and execute code to define, deploy, update, and destroy your infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IaC tools include&lt;/strong&gt;&lt;br&gt;
Hashicorp Terraform, AWS CloudFormation, Azure Resource Manager, Google Cloud Deployment Manager, Pulumi, Chef, Puppet, Ansible, StackOverflow Heat.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why is IaC transforming DevOps?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With the infractructure defined as code, it increases the effieciency of DevOps processes through:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Self service - the entire deployment process can be automated, and developers can kick off their own deployment whenever necessary.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Speed and Safety - with automated process, deployment will be faster, more consistent, more repeatable, and not prone to manual errors.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Documentation -  if your infrastructure is defined as code, then the state of your infrastructure is in source files that anyone can read. That means that, IaC acts as a documentation, allowing everyone in the organization to understand how things&lt;br&gt;
work.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Version control - IaC source files can be stored in version control, which means that the entire history of your infrastructure is now captured in the commit log. This becomes a powerful tool for debugging issues, because any time a problem pops up; you check the commit log, find out what changed in your infrastructure, simply revert back to a previous version.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Validation - If the state of your infrastructure is defined in code, for every single change, you can perform a code review, run a suite of automated tests, and pass the code through static analysis tools — all practices that are known to significantly reduce the chance of defects.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Reuse - You can package your infrastructure into reusable modules so that you can build on top of known, documented, battle-tested pieces.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Happiness - Deploying code and managing infrastructure manually is repetitive and tedious. IaC offers a better alternative that allows computers to do what they do best (automation) and developers to do what they do best (coding).&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
  </channel>
</rss>
