Tagged Questions
A database view is a stored query. Its output automatically updates as underlying table data changes.
8
votes
4answers
3k views
How to make a view column NOT NULL
I'm trying to create a view where I want a column to be only true or false. However, it seems that no matter what I do, SQL Server (2008) believes my bit column can somehow be null.
I have a table ...
7
votes
2answers
169 views
View or stored procedure for complex queries?
I have a somewhat complex query with multiple (nested) sub-queries, which I want to make available for the applications developers. The query is generic and generates a view with computed values over ...
5
votes
3answers
209 views
Refactoring a tsql view which uses row_number() to return rows with a unique column value
I have a sql view, which I'm using to retrieve data. Lets say its a large list of products, which are linked to the customers who have bought them. The view should return only one row per product, no ...
5
votes
1answer
273 views
How much space does a view take up in Microsoft SQL Server
I have a very large table in SQL Server 2008. It has lots of fields which are only useful to a certain segment of users, some of the fields some users shouldn't be able to see.
The table is huge so ...
5
votes
2answers
757 views
How do MySQL views work?
When I create a view I am basically making a new table that will automatically be transacted upon when data in one of the tables it joins changes; is that correct?
Also why can't I use subqueries in ...
4
votes
4answers
78 views
Problem updating a sql view
I am having a problem with a sql view. My actual views encompass several joins, but for the purposes of my question I will demonstrate the issue with smaller examples.
Say I have the views…
create ...
4
votes
2answers
632 views
Using COALESCE in SQL view
I need to create a view from several tables. One of the columns in the view will have to be composed out of a number of rows from one of the table as a string with comma-separated values.
Here is a ...
4
votes
3answers
395 views
Dynamic column names
Is it possible to create a view (not stored procedure) with dynamic column names based on another table? For example:
Code:
CodeId|Description
------------------
1|Title
2|Notes
Data:
...
3
votes
1answer
47 views
generate id row for a view with grouping with postgresql
Hi I'm trying to create a view with row numbers like so:
create or replace view daily_transactions as
select
generate_series(1, count(t)) as id,
t.ic,
t.bio_id,
t.wp,
...
3
votes
2answers
114 views
SQL view infers nullable column from non-null table?
I have a Product table with non-null "quantity" (decimal) and "status" (int) columns, and I created a view on this table with the following case expression:
SELECT P.ProductTypeId,
(CASE WHEN ...
3
votes
1answer
150 views
different result from SELECT and from SELECT inside a VIEW
Result from SELECT statement is different from the result from SELECT inside VIEW. How to fix the problem and get the same result from in view?
actions table:
...
2
votes
2answers
407 views
Ruby On Rails ActiveRecord SQL view into schema
I created a view and was able to successfully access it through rails by creating the view through a migration with execute sql.
The problem with this is that the view is not entered into the schema. ...
2
votes
1answer
430 views
How to rewrite CROSS APPLY to INNER JOIN to make the view indexed
On a separate thread I got a working example on how to translate my stored proc to a view, that will hold customer names to orders mapping, where orders are comma-separated lists of orders, including ...
2
votes
1answer
75 views
Currently using View, Should I use a hard table instead?
I am currently debating whether my table, mapping_uGroups_uProducts, which is a view formed by the following table:
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost`
SQL SECURITY DEFINER ...
2
votes
2answers
447 views
Can I concatenate a virtual column in a view?
Unfortunately, I have plaintext passwords in a database. I want to pass these plaintext values around as little as possible for, say, comparisons and updates. To this end, I'm trying to create a ...
2
votes
1answer
337 views
Using views for access control in PostgreSQL
I have a schema of tables whose contents basically boil down to:
A set of users
A set of object groups
An access control list (acl) indicating what users have access to what groups
A set of objects, ...
2
votes
1answer
2k views
creating django model for existing database/sql view?
I have inserted a definition for a view in $template_dir/sql/$someTableName.sql file. (create or replace view) so every time I run syncdb, the db views are created.
Can I create in models.py a python ...
2
votes
2answers
507 views
mysql create view only if it doesn't already exist
How do I create a view only if it doesn't exist. If it does exist, I want to drop the view and redefine it. I also want no warnings or errors.
2
votes
1answer
1k views
Check if a given DB object used in Oracle?
Hi does any one know how to check if a given DB object (Table/View/SP/Function) is used inside Oracle.
For example to check if the table "A" is used in any SP/Function or View definitions. I am ...
1
vote
2answers
60 views
SQL View to show interval of 12 months and by year
Right now one of the other programmers wrote this view to show interval of 6months. How do i write this so that it shows interval of 12 months grouped by month but only for year 2011
I'd like to copy ...
1
vote
3answers
45 views
Best practice to avoid code replication?
currently I have to change a view, a big part of the view code looks like this:
CAST('My_Tag_' + CASE
WHEN FieldX isnull
THEN ''
WHEN FieldX = '123'
THEN ...
1
vote
1answer
74 views
Select query 2-3 times faster than view
This query run alone:
SELECT
-- lots of columns
FROM
table1 t1
LEFT JOIN table2 t2
ON t2.[userid] = t1.[userid]
LEFT JOIN table3 t3
ON t1.[orderid] = t3.[orderid]
...
1
vote
2answers
78 views
SQL Server 2008 sys.objects equivalent to sysobjects.uid
Does anyone know how to get an equivalent of the SQL Server 2000 sysobjects uid column from the 2005+ sys.objects (or another) view?
I am trying to convert this code, as we are getting rid of all ...
1
vote
3answers
134 views
How do read-only database views fit into the repository pattern?
Example: Your database has a SQL view named "CustomerOrdersOnHold". This view returns a filtered mix of specific customer and order data fields. You need to fetch data from this view in your ...
1
vote
3answers
230 views
How to optimize MySQL query which contains table and left join of sql view
I have this query:
SELECT a.id, b.discount FROM (a LEFT JOIN b ON b.id_a = a.id);
EXPLAIN command for this query is this:
id select_type table type possible_keys key key_len ref ...
1
vote
3answers
250 views
When to qualify table or view name with dbo in a query?
I have a view in SQL Server, lets say MY_VIEW.
When I execute the command SELECT * FROM MY_VIEW it works fine. However, when I execute it as
SELECT * FROM dbo.MY_VIEW I get *Invalid object name ...
1
vote
1answer
156 views
Can a view return multiple result sets?
I would like to have a view that I could run return multiple result sets. Is this possible?
If a view can not do this, then is there another object with High Visibility/Transparency within SQL ...
1
vote
2answers
150 views
Query to count the exact number of records in all tables
IHello,
I'm trying to count for each table in my MySQL database how many records there are in it.
All of my tables happen to be in InnoDB and this query
SELECT TABLE_ROWS FROM ...
1
vote
1answer
767 views
Why can't SQL Server alter a view in a stored procedure?
I'm using MS SQL Server, and I'd like to alter a view from within a stored procedure, by executing something like "alter view VIEWNAME as ([some sql])".
A few pages thrown up by google assert that ...
1
vote
1answer
231 views
mysql CREATE VIEW not working from mysql_query
I have a code to create VIEW in mysql database which is working fine on my local server.
It creates and crop view normally. But on my Online server it gives error
"CREATE VIEW command denied to user"
...
1
vote
2answers
486 views
speeding up mysql queries / mysql views in django
I use the following code to select popular news entries (by date) from the database:
popular = Entry.objects.filter(type='A', is_public=True).extra(select = {'dpub': ...
1
vote
2answers
83 views
View or User Defined Function?
I have a scenario where I combine two tables into one (using UNION) and also JOIN data from some other tables.
I can do this either with a VIEW or a UDF/User Defined Function.
Considering that I ...
1
vote
1answer
149 views
SELECT statement for a VIEW in MySQL not returning all the wanted rows
I need help with my MySQL query:
CREATE OR REPLACE
DEFINER = CURRENT_USER
VIEW users_phpscheduleit
AS
SELECT
u.uid AS memberid,
pass AS password,
...
1
vote
4answers
2k views
Performing string concatenation from rows of data in a TSQL view (pivot?)
I'd like to create a view in SQL Server that combines several pieces of database metadata.
One piece of metadata I want lives in the sys.syscomments table - the relevent columns are as follows:
id ...
1
vote
5answers
300 views
MySQL table view limitations
Are there any limitations in the functionality of SQL Views for MySQL?
ex: Can you create a table view using 'JOIN' commands?
1
vote
3answers
2k views
MySQL Views: Referencing one calculated field (by name) in another calculated field
How can I define a view that has two calculated fields, for instance...
('TableName'.'BlueSquares' + 'TableName'.'RedSquares') AS TotalSquares, ('TableName'.'BlueCirles' + 'TableName'.'RedCircles') ...
0
votes
1answer
38 views
Oracle. Execute stored procedure on creation of the view
I have a view with a certain field.
Now I need to modify this field accordingly to some logic. I've implemented this logic in a stored procedure.
Now I want to execute this stored procedure and its ...
0
votes
0answers
36 views
dynamically add clauses and parameters to sql query in sql view
I am trying to create the view in sql server. say my query is
select username, address from users
where ??????
here i don't know how many parameters to be in where clause. i want to dynamically add ...
0
votes
1answer
85 views
How to return a view data using stored procedure
Hi friends the requirement is that using a stored procedure I should return all the value from a view.
Currently we are having a storedprocedure to return all the values from a table as given,
...
0
votes
1answer
51 views
How can I see the Original MySQL used to create a view in phpMyAdmin or other program?
How can I see the original MySQL used to create a view in phpMyAdmin or other program?
I am using phpMyAdmin version 3.3.9.
This post tells how to see the SQL used to create a view but its not the ...
0
votes
1answer
108 views
SQL view, performance and count from one-to-many relationship
I need some help with forming basic SQL-VIEWs for a bunch of my tables. Here's a quick overview
I've a ClaimDetail table and it has got some Lookup fields like StatusID, BrandID, SalespersonID, ...
0
votes
2answers
105 views
Double columns in a SQL View
We have a legacy interface that inserts into table T1 that values "BODY_TEXT" (varcharmax), "BODY_BIN"(varbinarymax).
It currently inserts just to one of the columns, and leave the other one NULL.
...
0
votes
1answer
126 views
How does one query a SQL View with Linq to SQL?
I normally do something like this...
var theDogs = from d in db.Dogs where d.Equals(5) select d;
//LetThemOut(theDogs);
where db is the DataContext and Dogs is a table, but what about a View?
Is ...
0
votes
1answer
92 views
MySQL, Are views global or per session/connection?
I'm thinking of creating a VIEW to speed up things and my question is: Are VIEWS per session/connection or global?
Example:
User Foo issues a query that creates a VIEW X, then user Foo continues to ...
0
votes
1answer
226 views
How to include a database's views in the SQL Reporting Services Model
I am new to SQL Reporting Services. I need to create a report from a SQL view in my database. When I add the database as a data source and generate a model from that data source, the model includes ...
0
votes
0answers
155 views
Choosing SQL join types for Entity Framework 4
I have a query for example:
var personList = context.People;
People is a view that has 2 joins on it and about 2500 rows and takes ~10 seconds to execute.
Looking at the Estimated Execution plan ...
0
votes
3answers
171 views
Materialized views with MySQL
Emulated materialized views with MySQL has good performance? I'm learning how to do with this link
thanks
Correction: "Materialized views" to "Emulated materialized views".
0
votes
1answer
83 views
Query with priority
I have a query that I cannot get to work right. I have 3 tables; Person, PersonProgram and Category.
Person: ID, ....
PersonProgram: ID, PersonID, Category, Code ...
Category: ID, ...
The ...
0
votes
2answers
344 views
Data from two tables into one view
Is it possible to grab data from two tables (that have the same fields) into one view. Basically, so the view sees the data as if it was one table.
0
votes
2answers
1k views
Entity Framework 4.0 & null fields in Views
We're adding some views to our entity framework model. Some fields in these views are nullable datetime2 datatypes in our sql server 2k8 db and the edmx is incorrectly showing these fields as being ...