Tacnode in 10 Minutes
Welcome to Tacnode! This quick-start guide will walk you through setting up your first database environment and running your first queries in just 10 minutes.
π What You'll Learn
By the end of this guide, you'll know how to:
- β Create and configure your Tacnode environment
- β Connect to your database using psql
- β Create databases and tables
- β Insert, query, and update data
π― Step 1: Prerequisites
Before we begin, you'll need to complete these quick setup steps:
π Create Your Tacnode Account
- Visit the signup page: Go to Tacnode Signup
- Register with your email: New users can quickly register using any email address
π» Install psql Client
You'll need the PostgreSQL command-line client to connect to Tacnode:
- Download psql: Visit the PostgreSQL official website
- Follow installation instructions for your operating system
π‘ Tip: psql is the standard way to interact with PostgreSQL-compatible databases like Tacnode
βοΈ Step 2: Set Up Your Environment
ποΈ Create Your Data Cloud
The Data Cloud is your dedicated workspace where all data operations happen.
- Log in to Tacnode
- Navigate to the Data Cloud management page
- Click "Create Data Cloud" to set up your workspace
π Learn more: Data Cloud Documentation
π₯οΈ Create Your Nodegroup
A Nodegroup is Tacnode's compute engine that processes all your database operations (DDL, DML, queries).
- Access Nodegroup management in one of two ways:
- From Data Cloud Center β Nodegroup
- Direct URL:
https://<cloud_regionid>-app.tacnode.io
- Click "+Nodegroup" to create your compute instance
π Learn more: Nodegroup Documentation
π Regions: Check supported regions
π Step 3: Connect to Your Database
π Enable Public Access
By default, Nodegroups use VPC networking. For this tutorial, we'll enable public access:
- Go to your Nodegroup details page
- Click the network settings
- Enable public network access
- Copy the connection details provided
π Connect Using psql
Use the following command template to connect:
Where:
<Account>
: Your Tacnode account username<Host>
: The public domain name from the connection details
π Security Note: You'll be prompted for your password when connecting
ποΈ Step 4: Create Your First Database
Now that you're connected, let's create your first database and table!
π Create a Database
Create a new database called tac_test
:
Switch to your new database:
β Success! You're now working in your new database
π Create a Table
Let's create a simple cars
table to store vehicle information:
Verify your table was created:
π Great! Your table is ready for data
π Step 5: Work with Your Data
Now let's add some data and run queries to see Tacnode in action!
β Insert Data
Add your first record to the cars table:
Result:
β Success! One row inserted
π Query Your Data
Let's see what we've stored:
Result:
π― Perfect! Your data is there and ready to query
π Update Data
Let's modify the existing record:
Result:
π Excellent! Your data has been successfully updated
π Congratulations!
You've successfully completed the Tacnode 10-minute quickstart! Here's what you accomplished:
β
Set up your Tacnode environment
β
Connected to your database
β
Created a database and table
β
Inserted, queried, and updated data
π Next Steps
Ready to explore more? Here are your next steps:
- π Advanced SQL Queries - Learn complex queries and optimizations
- π Data Import/Export - Work with larger datasets
- π‘οΈ Security Features - Secure your data
π¬ Need Help?
- π Browse our full documentation
- π¬ Join our community forums
- π§ Contact our support team
Happy querying with Tacnode! π