Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
63 views

I am running Informix 12.10 on several Windows servers. I have a simple table. For brevity, let's say the following. I am storing a name, a couple of numbers, the mime type, the actual file/media, ...
Joe McCay's user avatar
Advice
0 votes
4 replies
64 views

Let's say we are adding new column in a table and we have to find which stored procedure is using that table so how to find in below SQL Server Sybase
user's user avatar
  • 1
Best practices
0 votes
4 replies
94 views

I am building a worker system where idle hardware is expensive, so machines need to pick up new tasks as quickly as possible. Task durations vary significantly: some take a few seconds, others several ...
ahmad adel's user avatar
-1 votes
1 answer
111 views

I'm having an issue combining the records for the following table. There are multiple rows for data ranges, but they are actually continuous so I'm trying to combine them to find the maximum ...
Andrew Mentel's user avatar
0 votes
1 answer
94 views

I'm using Apache IoTDB 2.0.8 in table model. I need to filter grouped aggregate results, so I tried to define AVG(voltage) once with the alias avg_v and reuse that alias in HAVING. Schema and original ...
Oliver Svensson's user avatar
8 votes
3 answers
277 views

I have a table containing a lot of typed/named items and I want to create a (materialized?) view to group them together so that a UI can later make it easier for users to select. Description The goal ...
Atmo's user avatar
  • 4,310
-3 votes
0 answers
79 views

We are testing a stored procedure that performs insert, update, and delete operations between a source table and a target table, each containing 100+ columns. As part of our test cases, we are ...
vivek vaidya's user avatar
1 vote
1 answer
101 views

What is wrong with my query? CREATE PROCEDURE process_flight_log_staging_doug() BEGIN UPDATE `flight_log_staging_emt` SET `off_z` = CASE 'offz' WHEN `off_tz`='EDT' THEN `off_lcl`+INTERVAL 4 HOUR ...
Brian Douglas's user avatar
0 votes
1 answer
132 views

I have three tables, orders, invoices and invoice lines. uid OrderNumber product_id product_name quantityOnOrder 1 101 p001 Apple 6 2 102 p002 ...
James Smith's user avatar
Best practices
0 votes
9 replies
188 views

I am trying to write a basic SQL query that adds two numbers together. While the core arithmetic is straightforward, I want to make sure I am using the standard approach that works across different ...
Kartik Rehpade's user avatar
3 votes
4 answers
163 views

Data Set animal legs parrot 2 chicken 2 dog 4 cat 4 c'thulu 999 missing'no 0 Goal animal legs bird 4 mammal 8 I'm not sure what's wrong with my Oracle SQL query. It doesn't seem to be aggregating ...
Joe Liu's user avatar
  • 33
-1 votes
1 answer
104 views

I am using SQLite with DBeaver. I recently got a university assignment where I was asked to show the locking mechanism of a database. So I decided to work with DBeaver. I can solve it properly with ...
MK.Whridoy's user avatar
1 vote
3 answers
155 views

I'm creating a query where I have a box, and it has multiple products. I want to check whether any of the products' product_numbers can be found on the addons table. So I initially made this query: ...
user3249400's user avatar
0 votes
0 answers
179 views

I've got a query looking for accounts against the user-provided input: SELECT * FROM accounts a WHERE a.dep_id in :depIds AND ( (a.key_identifier IS NULL AND a.name LIKE CONCAT(:searchText, '%...
Sergey Tsypanov's user avatar
Advice
1 vote
3 replies
156 views

I am currently learning WPF (C#) and trying to build a small Bicycle Management application for practice. I understand the basics individually (WPF controls, simple classes, MySQL connections, etc.), ...
user avatar

15 30 50 per page
1
2 3 4 5
44929