Viewing 15 posts - 91 through 105 (of 168 total)
Hi Grant,
I just realized that you are the author of a book focused on t-sql query performance.
I believe such a usage will affect the performance of SQL Server in a...
May 12, 2010 at 6:49 am
In fact, I can not see any advantage by creating a view within a stored procedure.
But what I'm interested is that the sql engine successfully compiles the sp code without...
May 12, 2010 at 6:35 am
Hi Ankur,
Actually we have to add the DROP VIEW command within the procedure, otherwise a second call to SP will cause an error.
Here is a better version.
CREATE PROC USP_VIEW
AS
DECLARE
May 12, 2010 at 6:27 am
Hi Ankur,
You can use dynamic sql statements.
Here is a sample script
CREATE PROC USP_VIEW
AS
DECLARE @sql nvarchar(max)
SET @sql = N'CREATE VIEW view_name AS SELECT TOP 3 * FROM...
May 12, 2010 at 4:40 am
Raunak Jhawar (5/5/2010)
Thank you.It has been a month already of preparing for 70-448.
Can you please advice on key areas from Exam point of view?
Hi Raunak,
It has been long I have...
May 6, 2010 at 12:00 am
Raunak Jhawar (4/16/2010)
Can you suggest a certification for BI and any pre-requisite. if any.
70-448 is requirement for MCTS - SQL Server 2008, Business Intelligence Development and Maintenance certification
Additionally if you...
May 5, 2010 at 11:44 pm
Hi Abrar,
Both documents have the same pre-requisites for same certifications.
They can be considered the same. The opposite can not be thought also.
May 5, 2010 at 11:39 pm
Actually I got the certification paths document from Learning Rewards Program downloads.
May 5, 2010 at 8:29 am
I have some experience with SQL Server 2005 and Reporting Services but lost my job in the recession. After alot of thought I have decided I want to persue a...
May 5, 2010 at 1:48 am
Hello Mike,
Passing 70-431 is enough to complete requirements for MCTS : SQL Server 2005 certification
And completing other two exams (443 and 444) on top of 431 will earn you the...
May 5, 2010 at 1:36 am
🙂
After Michael, Paul has the shortest statement ever ... Great!
April 19, 2010 at 12:16 am
Hi nguyennd,
You are genius 🙂
I was so detailed with mod, division, etc.
You made the query more simple.
April 16, 2010 at 12:44 am
U can try this
SELECT
CASE WHEN (@Date % 100) = 12 THEN
((@Date / 100) + 1) * 100 + 1
ELSE
(@Date / 100) * 100 + (@Date % 100)...
April 16, 2010 at 12:30 am
SSRS (SQL Server Reporting Services) is definelty a good reporting tool that is working very effective in my production environments.
You can use it integrated with SharePoint portal applications, or stand...
April 16, 2010 at 12:22 am
Hi Goldie,
The following script is giving the outcome you want in my test database.
As you will see there is a string split function within the first part of the sql
Then...
March 16, 2010 at 12:43 am
Viewing 15 posts - 91 through 105 (of 168 total)