Viewing 15 posts - 241 through 255 (of 326 total)
Well, I can not RDP the server. And I am not sure how the SSMS on client was installed as it is an old machine and is given to me...
March 27, 2012 at 4:58 am
I just went rhu the article. Thaks all... it was a new learning for me....
July 7, 2011 at 4:16 am
The answer to clustered index is surprising to me. I was under impression that query will always return sorted data, if we have clustered index.
I even tried it practically, and...
July 7, 2011 at 4:01 am
ok, but i am sure, clustered index always gets sorted data on key columns, without adding ORDER BY, Always.
Gail, I have gone thru your series on Index basics. That is...
July 7, 2011 at 3:33 am
yeah, transcenders will be a big help. they usually have a big set of questions, you know....
good luck to you.....
I am too looking for my upgrade, 70-453 somewhere in august...
July 7, 2011 at 3:28 am
Training kits are a good help. I did MCITP for 2005 and they were helpful. But i'll say , they alone are not sufficient. My perception is that as long...
July 7, 2011 at 3:15 am
Thanks ALZDBA. I'll run the advisor. Previous level was 90.I too hope that 100 should not be a trouble either. Moreover it is Dev and QA environment, so not a...
June 27, 2011 at 12:53 am
Sorry, I confused with PK. I actually have a unique clustered index on view. So its PK in one way.
Now another question coming my mind:
My view has three tables(say a.b,c)...
May 12, 2011 at 9:02 am
But in the view, there is no PK. So when indexed view will be updated for data, then only way to find that data to be updated is thru indexes....
May 12, 2011 at 8:43 am
ya, thats true as now sql server has to maintiain index as well. but the fear is that if i miss an index and an update happens on that column,...
May 12, 2011 at 8:16 am
The answer to first 2 questions is - No
For third, there are indirect ways like using a batch file to execute it, but practially they are not great ways to...
February 19, 2011 at 12:48 am
dear kumar..
i knew the basics in SQL. what i m asking is some example for executing sql query which is passed thru another function like follows:
select dbo.test('select colname from table')
so...
February 19, 2011 at 12:05 am
Here is an example:
ALTER FUNCTION [dbo].[fn_abc]
(
@a int = 0
, @b-2 int = -1
)
RETURNS int
AS
BEGIN
DECLARE @Result int
SELECT @Result = col1
FROM dbo.tab1
WHERE Col2 = @A
AND Col3=@b
-- Return the result of the...
February 18, 2011 at 5:39 am
at top level, you can say Insert,update,delete are not allowed in funtion.
Use stored proc instead.
February 18, 2011 at 4:51 am
Thanks for trying it. Actually the variable @test-2 you have used, is actually a very long select clause in my case (100 lines to be precise). So every time I...
February 14, 2011 at 5:07 am
Viewing 15 posts - 241 through 255 (of 326 total)