Viewing 12 posts - 31 through 42 (of 42 total)
And I just specified name as "schedule"....
It may be some other name also........So I cant find that name dynamically...
April 9, 2009 at 12:53 am
this is the query
SELECT [ScheduleID],ScheduleName FROM [Schedule] ORDER BY schedulename ASC
and this is the result
1Schedule1
3Schedule12
4Schedule14
2Schedule2
5Schedule31
I want output in this format
1Schedule1
2Schedule2
3Schedule12
4Schedule14
5Schedule31
April 9, 2009 at 12:50 am
As Ken said, its not compulsory to have a clustered index to primary key... By default primary key will have clustered index. You can drop that clustered index and make...
April 3, 2009 at 10:05 pm
Sorry. .. I was telling related to integer datatype.. actually i also agree with Lowell
April 3, 2009 at 6:57 am
Mithun....
I will tell what i know.....In case of ur query , in where clause u have specified column of integer type...
if u pass any numeric value as varchar then it...
April 3, 2009 at 6:33 am
Its good idea... but again we have to use temporary table inside the function.. Anyhow I am also using same function and here is the function which does that work....
CREATE...
April 3, 2009 at 6:26 am
Thanks Michael,
That deadlock problem got solved after adding primary key to the table.
Cheers,
Manohar
April 2, 2009 at 11:21 pm
April 2, 2009 at 10:25 pm
Here condition will checked for existance of tht record... If the record is already inside that table, then it wil be updated else a new record gets inserted...
...
April 2, 2009 at 4:11 am
It worked....Thanks a lot.. :hehe:
March 18, 2009 at 7:50 am
Thanks Nitin,
But I want to replace all table names inside a procedure with schema prefix to it..
I have 2000 procedures in my database and i cant prefix manully..
So I...
February 26, 2009 at 2:47 am
Hi Sundar...
Well its not a good idea to implement drill through report from performance point of view.
Even though i can help u..
I wil send reply to ur mail...
Cheers....
Manohar V
January 21, 2009 at 2:22 am
Viewing 12 posts - 31 through 42 (of 42 total)