4
votes
2answers
2k views
Using WITH NOLOCK Table Hint in Query Using View - Does it Propagate Within the View?
If a "WITH NOLOCK" query hint is used on a View in SQL Server, does it propagate that hint to the view definition itself, even if NOLOCK is NOT used for the raw tables in the View definition? The r …
0
votes
How can I maintain consistent DB schema accross 18 databases (sql server)?
Create a single source-controlled DDL/SQL script for each release and only use it to update the databases. The diff tools can be useful but mainly for checking that you haven't ma …
0
votes
Parameterized SQL Columns?
Make the column based on the results of another query to a table that enumerates the possible schema values. In that second query you can hardcode the select to the column name that is used to defi …
0
votes
Most efficient way in SQL Server to get date from date+time?
CONVERT(VARCHAR(10), GETDATE(), 120) AS [YYYY-MM-DD]
…
4
votes
Is SQL syntax case sensitive?
Identifiers and reserved words should not be case sensitive, although many follow a convention to use capitals for reserved words and Pascal case for identifiers.
See …
1
vote
Why specify primary/foreign key attributes in column names
I only use the tablename with an Id suffix for the primary key, e.g. CustomerId, and foreign keys referencing that from other tables would also be called CustomerId. When you reference in the appli …
0
votes
Database table for grades
It's better to have a second table representing trimester, and have a foreign key reference to the trimester from the grades table (and store individual grades in the grades table). Then do the ave …
0
votes
Max of Sum in SQL
This will work in SQL Server without temp tables:
SELECT Store, Department, Sales FROM
(SELECT Store, Department, Sales,
DENSE_RANK() OVER (PARTITION BY Store
ORDER BY Sales DESC) …
1
vote
0
votes
Need advice on combining ORM and SQL with legacy system
Although I haven't used this particular ORM, views can be useful in some cases in providing lighter-weight objects for display and reporting in these types of databases. According to their document …
0
votes
Optimized SQL for tree structures
This article is interesting as it shows some retrieval methods as well as a way to store the lineage as a d …
2
votes
SmallDateTime Default Format Problem in SQLSERVER 2005
See this article:
Change default date time format on a single database …
0
votes
Limit Per Criteria
In testing I found that the Limit 7 doesn't work within subqueries in MySQL, please see Bill's suggestion which I verified that it works well.
SELECT id,
title,
cate …
3
votes
Help with recursive query
Here's an article that describes methods to do that:
Converting Multiple …
1
vote
SQL Selecting “Window” Around Particular Row
Probably could just use a UNION, and then trim off the extra results in the procedural code that displays the results (as this will return 20 rows in the non-edge cases):
(SELECT *
…
