Viewing 15 posts - 1,366 through 1,380 (of 1,923 total)
Palanivelrajan (6/17/2010)
Let me explain in detail about my requirement.
I want to write a stored procedure which is used by any application
(mostly for help window / Pick...
June 17, 2010 at 10:26 pm
bteraberry (6/17/2010)
Palanivelrajan (6/17/2010)
Dear Lawrence Moore,ROFL
:hehe:
June 17, 2010 at 10:25 pm
You connected to your remote linked server from your local management studio ; the query you are executing, will that access data from remote server or your local server ?...
June 17, 2010 at 8:39 pm
The description of the problem , the tables structure and the desired results are VERY WELL put by you! I have one recommendation though, please go through the following article...
June 17, 2010 at 12:41 am
This is certainly the correct place to ask this query ; no worries there !
For a first time poster, you have done a commendable job in explaining things, kudos there!
Now...
June 17, 2010 at 12:38 am
Fletcher, thanks for posting the data in readily consumable format; Here i am giving u a piece of code that will retreive the dimension values from the "Description" column. Please...
June 16, 2010 at 11:34 pm
only4mithunc (6/16/2010)
ALTER TABLE tablename ADD columnname AS CASE WHEN Bonus < 100 THEN 'Meager'
WHEN Bonus between 100 and 300 THEN 'Low'
WHEN...
June 16, 2010 at 8:53 pm
Learning something new on every visit to SSC. Hoping to pass it on to someone else.
Ah, excellent! 😎
June 16, 2010 at 7:22 am
Gianluca Sartori (6/16/2010)
ColdCoffee (6/16/2010)
select @user-id = USerID
where
firstname = SUBSTRING(@@UserName, 1, CHARINDEX(' ', @@UserName) - 1)
...
June 16, 2010 at 7:15 am
Gian, we can write this also like this , right?
select @user-id = USerID
where
firstname = SUBSTRING(@@UserName, 1, CHARINDEX(' ', @@UserName) - 1)
and lastname =...
June 16, 2010 at 7:01 am
Fletcher, i know how to go about it ; but, but but, i would like to know HOW your original data looks like and how you want your data to...
June 16, 2010 at 2:05 am
lmu92 (6/15/2010)
However, you need to decide whether you really need the identical output several times just named different (especially the SUM(bibal) stuff)...
Side...
June 15, 2010 at 8:44 pm
Hi there, please go through the following link ; i guess thats what you wnated exactly
Link : Paging and Versioning Using ROW_NUMBER() - Lawrence Moore
June 15, 2010 at 10:21 am
Viewing 15 posts - 1,366 through 1,380 (of 1,923 total)