Viewing 15 posts - 6,106 through 6,120 (of 6,678 total)
Maybe I am misreading this - but it sounds like all you need to do is change the join in the view from an inner join to a left outer...
September 1, 2008 at 10:10 am
How many pages do these tables have? Small tables will always show a high level of fragmentation.
August 31, 2008 at 7:29 pm
rbarryyoung (8/28/2008)
Vika (8/28/2008)
August 28, 2008 at 2:46 pm
I just copied the code you posted and ran it and got the expected results. Are you getting any errors?
Can you run the following and verify the results:
SELECT COUNT(*)...
August 25, 2008 at 3:49 pm
rbarryyoung (8/24/2008)
Jeffery, Shouldn't that be:SELECT [columns]
FROM table
WHERE column LIKE 'user1 %';
?
Yes - you are right.
August 25, 2008 at 3:29 pm
Lookup LIKE in Books Online - you can use the following:
SELECT [columns]
FROM table
WHERE column LIKE 'user1_%';
August 24, 2008 at 10:17 pm
The express edition does not come with SSMS. You can download a free version SSMSE from Microsoft and use that.
August 24, 2008 at 5:58 pm
Yes, you can use the 2005 client tools to manage SQL Server 2000. You can even manage a 2000 instance with the 2008 tools, however - there are a...
August 24, 2008 at 2:36 am
The source I used for this question is: http://blogs.msdn.com/psssql/archive/2007/02/21/sql-server-urban-legends-discussed.aspx
Another resource is: http://msdn.microsoft.com/en-us/library/ms175527.aspx
August 24, 2008 at 1:51 am
Jeff Moden (8/23/2008)
August 23, 2008 at 10:36 am
Please review this article: Best Practices: http://www.sqlservercentral.com/articles/Best+Practices/61537/
For your question, lookup the GROUP BY operator in Books Online. Based upon what you have posted, that is the best guess I...
August 22, 2008 at 10:42 pm
When you reply to a post - scroll down a little further and you can select your method of notification. Whatever you select will be saved as your default.
August 22, 2008 at 10:39 pm
Right at the top is your Control Panel. Select that, scroll down to Topic Subscriptions and you can mark all topics as Unsubscribe.
August 22, 2008 at 8:25 pm
You can review the following articles to get an idea of how to get this done:
Cross-Tabs: http://www.sqlservercentral.com/articles/T-SQL/63681/
Tally Table: http://www.sqlservercentral.com/articles/TSQL/62867/
In SQL Server 2005 you can use the row_number() function and OVER...
August 22, 2008 at 3:46 pm
Viewing 15 posts - 6,106 through 6,120 (of 6,678 total)