SQL2025Samples: Container-native SQL Server image with realistic schemas for CI/CD and SSMS demos.
337
SQL2025Samples: Container-native SQL Server image with realistic schemas for CI/CD and SSMS demos.
Welcome to SQL2025Samples, a container-native SQL Server image preloaded with multiple realistic schemas for reverse engineering, CI/CD pipelines, and SSMS-based exploration. Built and published by dbhitman (Anil)ā , this image includes:
USE AirlineFleetDB;
SELECT * FROM Flights WHERE Status = 'Scheduled';
## š½ļø FoodFleetDB ā Restaurant Delivery Schema
- Realistic restaurants, drivers, orders, and menu items
- Tables: Restaurants, Drivers, MenuItems, Orders, DeliveryStatus
- Perfect for logistics, delivery tracking, and dashboarding
USE FoodFleetDB;
SELECT Name, Cuisine FROM Restaurants WHERE Rating > 4.0;
## šļø EventHiveDB ā Event Management Schema
- Events, venues, tickets, attendees, and sponsors
- Tables: Events, Venues, Attendees, Tickets, Sponsors
- Great for ticketing platforms and event analytics
USE EventHiveDB;
SELECT Title, EventDate FROM Events WHERE Category = 'Music';
## š¾ PetCareDB ā Veterinary Schema
- Pets, owners, vets, visits, and treatments
- Tables: Pets, Owners, Vets, Visits, Treatments
- Ideal for clinic management and health tracking
USE PetCareDB;
SELECT Name, Species FROM Pets WHERE Gender = 'Female';
## š” TravelNestDB ā Property Booking Schema
- Hosts, properties, guests, bookings, and reviews
- Tables: Hosts, Properties, Guests, Bookings, Reviews
- Perfect for travel-tech demos and booking engines
USE TravelNestDB;
SELECT Title, PricePerNight FROM Properties WHERE Location = 'Goa';
## šļø FitTrackDB ā Fitness Tracking Schema
- Users, workouts, goals, nutrition plans, and progress logs
- Tables: Users, Workouts, FitnessGoals, NutritionPlans, ProgressLogs
- Great for health-tech apps and fitness dashboards
USE FitTrackDB;
SELECT Type, DurationMinutes FROM Workouts WHERE CaloriesBurned > 300;
## š¾ AgroTrackDB ā Agriculture Schema
- Farmers, crops, fields, yields, and weather logs
- Tables: Farmers, Crops, Fields, Yields, WeatherLogs
- Ideal for agri-tech analytics and field monitoring
USE AgroTrackDB;
SELECT Name, Season FROM Crops WHERE Type = 'Cereal';
š³ How to Use
1. Pull the image from Docker Hub
docker pull dbhitman/sql2025samples:latest
2. Run the container in detached mode
docker run -d -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Welcome123!" -p 1433:1433 dbhitman/sql2025samples:latest
Welcome123! is the default SQL Server sa password. You can change it if needed.
3. Connect via SSMS
- Server name: localhost,1433
- Authentication: SQL Server Authentication
- Login: sa
- Password: Welcome123!
š Credits
Created by dbhitman (Anil), Principal Cloud Architect & community educator.
This image is part of a broader initiative to ritualize technical onboarding through container-native labs and stylized schemas.
Content type
Image
Digest
sha256:b010ce83dā¦
Size
633.2 MB
Last updated
11 months ago
docker pull dbhitman/sql2025samples