25,990 questions
0
votes
0
answers
44
views
Extend Standard CDS view with group by / or aggregated fields [closed]
I have the requirement to extend a standard SAP CDS view to add one field. The standard CDS view have a group by clause, therefore I'm getting the following error when I extend it:
The Group by ...
0
votes
1
answer
69
views
RealmSwift: List not refreshing after changes on data
I've got a list in detail of a NavigationSplitView. The data is stored with RealmSwift.
@EnvironmentObject var realmService: RealmService
@ObservedRealmObject var selectedGroup: Group
@...
0
votes
0
answers
93
views
How can I fix this error in my python3/flet script?
I'm working on this Python3/flet0.28.3 project, on Macos M1:
main.py:
from flet import *
from flet_route import Routing,path
from pages.LOGIN import Login
from pages.HOME import Home
from pages.EDITOR ...
1
vote
1
answer
69
views
TimeScaleDb/Postgres: Materialized Views(COGG): GROUP BY: group by certain field values
What I'm currently doing is this:
SELECT
time_bucket('60 min', raw_data.timestamp) AS time_60min,
COUNT(raw_data.vehicle_class) AS "count",
raw_data.vehicle_class AS "...
0
votes
1
answer
73
views
WPF DataGrid ignores container height, outgrows row
I'm building a resolution-independent WPF application. The MainWindow uses a ContentControl to load views dynamically:
<Border Grid.Row="1" Grid.Column="1" BorderThickness="...
-1
votes
1
answer
90
views
Get latest visit_dates from table by using store_id
I'm trying to get only latest visit_date from my table view by using store_id, but in visit_date showing old dates as well, I need only latest visit_date from visit_date column by using store_id in ...
1
vote
1
answer
46
views
Why isn't my React Native view moving down?
I'm trying to move this view, which is currently at the top and blue, down. I've tried everything I can think of, but it hasn't moved and remains at the top.enter image description here
As you can see ...
0
votes
1
answer
51
views
How to display inactive inherit_children_ids lines in ir.ui.view's form?
In the model ir.ui.view in odoo 18, i want to get the inactive lines of the one2Many-field: inherit_children_ids as permanently displayed.
I have tried to customize using a custom module (see below) ...
0
votes
2
answers
106
views
View created fine before, now fails every time on Postgres using Liquibase
This is the view:
SELECT DISTINCT d.comic_book_id as comic_book_id,
d.comic_detail_id as comic_detail_id,
d.archive_type as archive_type,
...
0
votes
1
answer
106
views
How can I overlay text using TradingView Pine Script?
I would like to overlay text over my TradingView graph. I would like to show the text "over bought" at the RSI 85 level, centered in white, and also show the text "over sold" at ...
0
votes
1
answer
70
views
Select an item of list in NavigationStack for view restoration
In my app there's a list in a NavigationStack for selecting an object for the next view. This is working well. But after restarting the app the selected item should be preselected. I've tried the ...
1
vote
1
answer
88
views
SQL view doesn't return nested objects
I've created SQL View in SQL Server database which returns rows with list of columns:
Id, SupplierName, EmailAddress, PhoneNumber, CsatRating, CsatRatingCount,
Latitude, Longitude, AddressLine1, ...
1
vote
2
answers
117
views
Undrop Views in Database ok Undrop Views NOK
In Snowflake, while individual views lack an UNDROP command, restoring a dropped database using UNDROP DATABASE reinstates all its contained objects, including views, provided the restoration occurs ...
0
votes
1
answer
182
views
Databricks with temp view with syntax error [PARSE_SYNTAX_ERROR]
I am using .NET C# with the SparkSQL ODBC driver to run a query against Databricks. To test my query, I first test and run in a SQL Notebook in the Databricks portal. I create a TEMP VIEW and then use ...
1
vote
0
answers
29
views
com.google.android.material.textfield.MaterialAutoCompleteTextView height issue
Here is presented a part of layout I have in project, I use databinding.
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/til_name"
android:layout_width=&...
0
votes
0
answers
46
views
Sqlite view not populating from "underlying" (?) table
I've just joined an organisation whose production website uses a SQL Server database. My boss wants more integration tests, using Sqlite. One slice I need to test uses a database view defined as:
...
0
votes
1
answer
79
views
Nvarchar table column gets as varchar in view
I have the following table
CREATE TABLE [OMEGACA].[ACC_POL]
(
[POLICY_ID] [int] IDENTITY(1,1) NOT NULL,
[POLICY_NAME] [nvarchar](200) NOT NULL,
[POLICY_DESC] [nvarchar](1000) NULL,
[...
0
votes
1
answer
32
views
Is there a way I can expand a query if one value is null in Oracle SQL?
Is there a way that I can expand an existing table into something like a view, replacing the (null) value with multiple records? Basically, (null) represents that the user has access to all the roles ...
-1
votes
1
answer
42
views
Django form doesn`t appear in page
I want to add posts in adding system from user profile page (without creating another page to adding).
To profile page including html file for creating post
I created model, form, view and html but ...
0
votes
0
answers
19
views
How to set Table of Contents to show by default when starting JupyterLab desktop
When I start JupyterLab desktop app, and open a notebook, I always want the table of contents to show. I have asked ChatGPT, but the solutions do not work. I am not able to edit the user settings. ...
0
votes
0
answers
14
views
Android: Multiple views occupying same location in layout - how?
I have a layout in which three checkboxes are all located at the same position. Only one of the checkboxes is enabled and visible at a time, depending on other parameters. I'm getting a "cb_xxx ...
0
votes
0
answers
59
views
In Pinescript v5, I am not able to maintain persistent state of a variable
I am in the process of developing an indicator in pinescript v5 which plots buy/sell signal and based on that fires the alert condition to execute auto trade.
The problem I am facing is, 1. Assume ...
0
votes
0
answers
75
views
PL SQL export data
I'm using Oracle DB and I'm trying to map part of my schema.
I'm using the following query to recieve all views existing in my schema for further analysis:
select * from all_views where owner like '%...
-2
votes
1
answer
399
views
Use: Border vs. BoxView .NET MAUI [closed]
The summary of a Border according to the documentation is
The .NET Multi-platform App UI (.NET MAUI) Border is a container control that draws a border, background, or both, around another control. A ...
0
votes
2
answers
43
views
Query data from views with WHERE statement
I have two tables in my Databricks Unity Catalog.
Data of trips, approximately 30.000 rows.
TripID
Client
Location
Start
End
...
ABC
client1
loc1
2023-01-01T00:00:00
2023-01-01T08:00:00
...
DEF
...