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 …
2
votes
How do you continue to improve your SQL skills?
I improve by analyzing slow and complex queries and looking for ways to improve them. This can be done in SQL Server by analyzing the Query Plan tools and looking for bottlenecks. Also I find the …
0
votes
What would a Database Diagram (ER Diagram/Table Layout) look like for measuring distribution of something?
I think you could add a DateTime field so that you can do reports of the events in between a certain time interval, or at least know when the last activity count was taken.
…
0
votes
SQL Server 2005: Importing data from SQL Server 2000
Probably easiest to just do a backup in SQL 2000 and then import the backup into SQL 2005 using the restore. Those options are available in the Express Edition.
…
0
votes
Most efficient way in SQL Server to get date from date+time?
CONVERT(VARCHAR(10), GETDATE(), 120) AS [YYYY-MM-DD]
…
0
votes
sql server 2005 attach database broken
Make sure the attached files have the correct security for SQL Server to access them and also that you have the authority to read the attached DB within SQL Server itself.
…
1
vote
1
vote
How to design a database schema that can be used with both MySQL and SQL Server?
This article describes some of the main differences.
Differences Between MSSQL and m …
1
vote
How do I pass a string parameter greater than varchar(8000) in SQL Server 2000?
You can't do that in SQL 2000, use the "text" data type instead.
Choose SQL 2000 Data Types
…
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 …
0
votes
How do I release sql express database?
There's an example in this post that shows how to back up a SQL Express database within a prog …
2
votes
SmallDateTime Default Format Problem in SQLSERVER 2005
See this article:
Change default date time format on a single database …
3
votes
Help with recursive query
Here's an article that describes methods to do that:
Converting Multiple …
2
votes
Remove autogenerate GUID column from Add Entry pages in Dynamic Data Web Application
According to MSDN:
"You can hide the primary key as you do any other column by using the Scaffold attribut …
