
Open
Posted
•
Ends in 5 days
Paid on delivery
I’m setting up a new Azure SQL database and need a properly designed reference table that will hold lookup values. The table should follow good normalization practices, include a primary key, and be ready for indexing so it can serve fast joins from several transactional tables that will be added later. As well as providing the table, I will give you temporary log-in to put the table in the Azure SQL storage. Here’s what I expect: • A clean, well-commented T-SQL script that creates the reference table and any supporting constraints (primary key, unique or check constraints where appropriate). • A second script—or a section in the same file—that inserts a handful of sample lookup rows so I can verify the structure right away. • Brief notes explaining each column, the purpose of any constraints, and guidance on how to extend the list safely. ******************************** Table Specifics Table name “Test Table” Show steps to create table Column names “Name” TXT “ROW ID” INT or other sys auto-gen ID “Age” INT / NUMBER “Content” TXT; CHAR LENGTH (6000) “Image” - allow for base64 ************************************ The data source for the initial population is still open; I haven’t decided whether I’ll key it in manually, import from a file, or sync it from elsewhere. If you have best-practice suggestions for automating future loads, feel free to outline those in your notes. Please deliver .sql files that run cleanly in Azure SQL (latest compatibility level) along with your explanatory comments.
Project ID: 39745701
14 proposals
Open for bidding
Remote project
Active 12 hours ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
14 freelancers are bidding on average $35 AUD for this job

Hi there, Here is the code -- Create the reference table CREATE TABLE TestTable ( RowID INT IDENTITY(1,1) PRIMARY KEY CLUSTERED, Name NVARCHAR(255) NOT NULL, Age INT NULL, Content NVARCHAR(6000) NULL, Image NVARCHAR(MAX) NULL ); -- Create a non-clustered index on Name for faster joins CREATE NONCLUSTERED INDEX IX_TestTable_Name ON TestTable (Name); -- Create a check constraint to ensure Age is within a valid range ALTER TABLE TestTable ADD CONSTRAINT CHK_TestTable_Age CHECK (Age >= 0 AND Age <= 150); -- Insert sample lookup rows INSERT INTO TestTable (Name, Age, Content, Image) VALUES ('John Doe', 30, 'Sample content for John Doe', NULL), ('Jane Doe', 25, 'Sample content for Jane Doe', NULL), ('Test User', 40, 'Sample content for Test User', 'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg=='); -- Sample base64 image -- Notes: -- RowID: A unique identifier for each row, auto-generated using IDENTITY. -- Name: A descriptive name for the lookup value. -- Age: An optional age value, with a check constraint to ensure it's within a valid range. -- Content: A text field to store additional content, with a maximum length of 6000 characters. -- Image: A field to store base64-encoded images, with a maximum length of MAX. -- To extend the list safely, you can insert new rows using the INSERT INTO statement. -- Make sure to validate the data before inserting it to ensure data integrity. -
$20 AUD in 7 days
5.8
5.8

Subject: Full-Stack Developer to Deliver Your Project [Azure SQL Reference Table Setup] — Fast, Secure & SEO-Optimized Results Hi there, Thank you for outlining your project! I’d love the opportunity to bring it to life with precision, performance, and results you can count on. As a Full-Stack Web Developer with 7+ years of hands-on experience, I specialize in building modern, scalable, and conversion-optimized ecommerce websites across WordPress, WooCommerce, Shopify, Wix, Webflow, Laravel, PHP, React.js, Vue.js, and more. Here's how I’ll add value to your project: ✦ Fast, secure, and SEO-friendly development ✦ Clean, maintainable code built for long-term success ✦ Fully responsive design with modern UI/UX ✦ Hosting & domain setup: DNS, SSL, performance tuning ✦ Seamless API integrations, bug fixing, and ongoing support ✦ Transparent communication, on-time delivery, and post-launch care With 90+ 5-star reviews and a proven track record of delivering client success, I’m confident I can exceed your expectations. Portfolio & Reviews: https://www.freelancer.com/u/atifuiux Ready to start immediately — let’s chat and get your project moving! Best regards, Atif IS Full Stack Web Developer | UI/UX Specialist | Webflow Expert
$10 AUD in 1 day
3.5
3.5

Hello, I am expert in web development having 3 of experience in web development, I understand your requirement about properly designed reference table that will hold lookup values and ready to move forward come on chat to move forward to next step Waiting for your response Best regards
$20 AUD in 1 day
2.4
2.4

From Concept to Launch: Full-Stack Solutions Without the Hassle I understand your need for a clean, professional, and user-friendly T-SQL script to create a normalized reference table called "Test Table" in Azure SQL. Our team excels in creating efficient databases and can deliver a script with supporting constraints, sample data insertion, and detailed column explanations. While I am new to freelancer, I have a driven junior team that strive to meet all your needs. I don’t just deliver projects I deliver results. We can ensure the table is ready for indexing and provide guidance on extending the list safely. If you're open to automation, we can suggest best practices for future data loads. I would love to chat more about your project! Regards, Taryn September
$10 AUD in 30 days
0.6
0.6

Hello Stephen H., We went through your project description and it seems like our team is a great fit for this job. We are an expert team which have many years of experience on SQL, Azure, MySQL, Database Administration, Microsoft SQL Server, Database Development, Data Integration, Database Design, Database Management, Data Modeling Lets connect in chat so that We discuss further. Thank You
$30 AUD in 7 days
0.0
0.0

Your project deserves a clean, seamless solution — and that’s exactly what I deliver. I understand the importance of a well-designed reference table in Azure SQL for fast joins to transactional tables. With years of hands-on experience, I offer a properly normalized table with primary key and indexing, following best practices. While I am new to freelancer, I bring years of hands-on experience and have successfully delivered similar projects off site. I’m committed to delivering your project successfully to build a strong, trusted profile here. I would love to chat more about your project! Regards, Romano Coetzee
$10 AUD in 30 days
0.0
0.0

As an experienced software developer, I have a comprehensive understanding of SQL databases and I've specialized in ensuring data integrity and efficient processing for my clients. This aligns perfectly with your project on setting up effective reference tables on Azure SQL. I am adept at formulating normalization strategies and implementing robust constraints — skills that are crucial when designing a lookup table intended for fast joins as you described. Moreover, my proficiency in Python will come handy not only in creating a complete, well-commented T-SQL script for your reference table but also in providing any additional automation solution for future data loads that you may need. Having worked on a number of data-driven projects, I comprehend the importance of maintaining data consistency while ensuring seamless workflows and streamline databases. In me, you will find a highly efficient and dedicated professional who prizes clear communication and client satisfaction. My experience in artificial intelligence (AI) will be beneficial even after this project is completed through my implementation of chatbots and APIs that can continue to make your database management simpler and more efficient. Let's discuss further details of the project to ensure optimal results tailored uniquely to your business needs.
$20 AUD in 7 days
0.0
0.0

Hi my friend, I’d be happy to help you create a well-structured reference table in Azure SQL. From your description, the main need is a normalized table with a primary key and indexing ready for fast joins, plus clean, well-commented T-SQL scripts that are easy to extend. My solution is to write a script that creates the “Test Table” with your specified columns—auto-generated ROW ID, Name, Age, Content (up to 6000 chars), and Image (base64)—plus appropriate primary and check constraints. I’ll also include a sample insert script and clear explanatory notes on each column, constraints, and suggestions for safely extending the lookup data. You should consider me because I have hands-on experience designing Azure SQL tables and writing scripts that are both production-ready and easy to maintain. I can also provide guidance on automating future data loads, whether manual entry, file imports, or syncing from other sources. Would you like me to include sample indexing strategies to optimize joins with your future transactional tables?
$20 AUD in 7 days
0.0
0.0

I believe my skills align perfectly with your project needs. I can design a normalized reference table in Azure SQL, including primary keys and indexing for optimal performance. I offer expertise in T-SQL scripting coupled with clear documentation. I've recently completed similar projects successfully off-platform. I focus on accuracy, reliability, and clear communication to ensure stress-free results. The worst-case scenario is a free consultation; the best case is gaining a reliable partner for your database needs. I'd love to chat with you about your project! Kind regards, Jayden Finch
$50 AUD in 30 days
0.0
0.0

Hello, I can help you design and implement a normalized, high-quality reference table in Azure SQL following best practices. I will provide: A T-SQL script that creates the table TestTable with proper data types, a system-generated primary key, constraints, and indexing support for efficient joins. A sample insert script with test rows so you can immediately verify structure and constraints. Inline comments in the SQL to explain column purpose, constraints, and safe extension guidelines. A short README note recommending best practices for future data loads (manual entry, file import, or automated ETL/sync). Create TestTable with: RowID as INT IDENTITY (primary key). Name as NVARCHAR(255) (supports multilingual text). Age as INT with a CHECK constraint for valid ranges. Content as NVARCHAR(6000) (large text storage). ImageBase64 as NVARCHAR(MAX) (to store base64 safely). Add comments + best-practice constraints. Insert sample rows for verification. Deploy directly into your Azure SQL instance using your temporary credentials. I can deliver the scripts and implementation within a short timeframe and walk you through the setup if needed. Looking forward to helping you get your reference table designed properly. Best regards, Jose
$25 AUD in 2 days
0.0
0.0

Herne Hill, Australia
Payment method verified
Member since Nov 11, 2021
$10-30 AUD
$25-50 AUD / hour
$2-8 USD / hour
₹600-1500 INR
$750-1500 USD
₹1500-12500 INR
$10-30 USD
$30-250 USD
₹12500-37500 INR
₹600-1500 INR
₹250000-500000 INR
$2-8 USD / hour
₹1500-12500 INR
$8-15 CAD / hour
$10-30 USD
€15-36 EUR / hour
₹750-1250 INR / hour
₹37500-75000 INR
$30-250 USD
$30-250 CAD
₹400-750 INR / hour
$2-8 USD / hour