Viewing 15 posts - 616 through 630 (of 1,114 total)
I never try to blame or cheat anybody. Becuase i don't like that, i always go smoothly with my sorrounding.
I thought i gave my advice without hurting him. But...
June 23, 2008 at 3:07 am
Oh.. i never think my advice turn into very bad one. I don't try to act arrogant(never).
If my words looks like that , then i am sorry.
June 23, 2008 at 2:56 am
sqldba,
first of all try yourself, otherwise you can't learn anything new. Try to write your own SP. Becuase it is a basic one, without knowing how to wite a simple...
June 20, 2008 at 4:08 am
Sqldba,
CREATE PROCEDURE ***
@macname varchar(30),
@user varchar(30)
AS
--Select user from table1 where tuser =@user
If (Macid= @macname)
begin
...
June 20, 2008 at 2:54 am
Say for example,
create table #Emp
(
Eno int,
Ename varchar(5)
)
insert into #Emp
select 1,'AA'
union all
select 1,'AA'
union all
select 2,'BB'
union all
select 3,'CC'
select distinct * into #FinalResult
from #Emp
will give you the expected result.
June 19, 2008 at 9:45 am
Simply you can use DISTINCT keyword.
If you give some sample data's you will get lot of help from here.
June 19, 2008 at 9:39 am
I also studied the below URL. So i am clear with Sybase side.
Now, I want to know the limitations in Sql2000,sql2005 and sql2008.
can anybody refer some URL's ?
June 18, 2008 at 8:02 am
I want to know the MAXIMUM limitations of the following statements.
where could i find the details ?
IF
CASE
AND's
OR's
Number of columns in a SELECT statement
Trigger ( Upto 128 nested level...
June 18, 2008 at 7:54 am
Just i saw the below URL.
http://answers.google.com/answers/threadview?id=315972
but no guarantee there for others... how do you know that some RDBMS's won't simply turn the IN list to a working table and join...
June 18, 2008 at 7:42 am
Reproduction using the AdventerWorks demo database:
1) Run this first and save the output to a text file:
select 'or ContactID = ' + cast(ContactID as varchar(20) )
from Person.Contact
2. ...
June 18, 2008 at 5:53 am
I am curious why you need this information.
I have executed a query which has more number of ( around 500) string's in the IN clause. (All of us know IN...
June 18, 2008 at 5:43 am
I searched on websites, and found one URL.
June 18, 2008 at 4:17 am
anybody want to refer some URL's to know about it, then it would be nice.
June 17, 2008 at 7:57 am
Thanks a lot for all of your suggestions and advices.
I have done my presentation very well. They are quite happy. My offshore manager also appreciated me.
As you people suggested, i...
June 17, 2008 at 7:50 am
Viewing 15 posts - 616 through 630 (of 1,114 total)