For questions about Structured Query Language (SQL), which is a language for querying databases.
Questions tagged [sql]
20 questions
12
votes
2 answers
Separate SQL Server or just separate SQL Database for test and production?
I'm new to SQL Server, so this may be more of a SQL Server management question.
I'm creating test and production databases for a service, and I imagine I'll be wiping the test database quite a lot. Additionally, I'm going to want different…
Anonymous1
- 305
- 3
- 7
9
votes
1 answer
Why is Prometheus not a good choice for data with high cardinality?
I have a background in relational databases and new to Prometheus. I wonder why Prometheus is not a good choice for high cardinality data? Why do I need to use low cardinality data? It's exact opposite from SQL DBs.
What are the technical reason for…
Sybil
- 472
- 4
- 11
7
votes
2 answers
MSSQL and AD in a Docker Container
I am attempting to use Active Directory authentication with SQL Server on Linux running inside the official MSFT Docker container for MSSQL (https://hub.docker.com/_/microsoft-mssql-server)
I am in the midst of working through this tutorial, but I…
David West
- 1,533
- 3
- 18
- 25
4
votes
1 answer
What are HiveQL limitations compared to SQL?
I'm aware that Apache Hive provides SQL-like interface to query stored data. So I would like to ask, what are the main limitation of Hive-based SQL-like compared to other relational SQL query languages (such as MySQL)?
kenorb
- 8,011
- 14
- 43
- 80
4
votes
2 answers
Postgresql in DevOps skills
What are the basic skills and requirements a DevOps candidate should have when working with PostgreSQL?
How to monitor it, deploy, etc.?
Дмитрий
- 41
- 2
3
votes
1 answer
SqlPackage.exe: Error SQL0: Required contributor with id 'id' could not be loaded
while trying to build dacpac using sqlpackage.exe, we are getting the following error
Microsoft.SqlServer.Dac.DacServicesException: An error occurred during deployment plan generation. Deployment cannot continue.
Error SQL0: Required contributor…
Shubh Rocks Goel
- 151
- 4
3
votes
1 answer
Is there a way to acquire metadata about an Amazon RDS database instance using only SQL?
For example, if I have a SQL Server instance in RDS, and I have only a connection string to connect to the server, is there a sproc or some pre-configured tables I can access via SQL on the instance that would report the instance size string?…
Triynko
- 131
- 1
3
votes
2 answers
Git - Everyone Pushing to Same Branch in Different Files
Database team is implementing code changes, using Visual Studio SSDT database projects with Git source control. Everyone is pushing to main Release branch with code review (only 5 developers on the team). All the database coworkers are only allowed…
MarkAllison
- 31
- 2
3
votes
0 answers
Monitoring SSRS report server with AppDynamics
I've spent several days trying to figure out how to set up AppDynamics to monitor our SQL Server Reporting Servers, and am encountering the issue where multiple nodes for the same server and application are showing up. I've tried following the…
Stuart Ainsworth
- 998
- 6
- 15
2
votes
1 answer
Conditionally stopping SQL replication during deployment
The project that i recently started working on uses a dacpac to deploy / update a database in MS SQL Server. The database is replicated, whenever the dacpac contains modifications to any table, we manually terminate the replication before continuing…
SimonAx
- 141
- 4
2
votes
1 answer
Is it possible to set up Microsoft Sql Server in a scalable way?
I am working on some architecture where we need to have a Microsoft Sql Server database that is scalable, with one writable master and many read-only slaves. Ideally I should be able to hit a load balancer of some kind, and if it is a write, it…
Marshall Tigerus
- 241
- 1
- 8
1
vote
1 answer
How to deploy SQL Script in DevOps culture and Rollback situation too?
How we can manage database part in DevOps environment/CICD pipeline, Here taking about the SQL Script. For Example any deployment where Insert and Update SQL's, If we setup in CICD pipeline then I will execute everytime thus I will re-execute…
Nullpointer
- 255
- 1
- 4
- 12
1
vote
1 answer
How many iops do I actually get in a General Purpose SQL Database in Azure?
I'm running a serverless SQL database in azure, taking a load from some data transformed by Databricks.
Every time I try to write to the database the, IOPS percentage shows up as 100% which makes it clear that this is my bottleneck.
In the database…
Hans
- 111
- 1
0
votes
1 answer
How to incorporate containers into a standardized dev environment?
I'm currently working at a small company where we've had a lot of issues being on the same page with entity framework migrations and local databases. I want to start incorporating containers in hopes of standardizing everyone's development…
avenmia
- 105
- 2
0
votes
1 answer
How to filter ELB logs by today's date?
I've tried this query:
SELECT request_timestamp
FROM elb_logs
WHERE date_trunc('day', request_timestamp) = date_trunc('day', current_timestamp)
LIMIT 10
but it fails with:
SYNTAX_ERROR: line 3:7: Unexpected parameters (varchar(3), varchar) for…
kenorb
- 8,011
- 14
- 43
- 80