Viewing 7 posts - 1 through 7 (of 7 total)
Appreciate your article.
This is with lot of explanation, but we can achieve the output more efficient way with the sorting of rolename also:
select distinct a.userid, substring(b.rolename, 1, len(b.rolename )-1)...
June 28, 2010 at 11:18 pm
Actualy, I have updated some data in my database and want to retrieve that data.
But I don't know how to retrieve that data.
I have also read some topics...
June 10, 2009 at 4:00 am
Hi Vikas and Andrew,
I have created two logins, login A and B. After that, I made the Login A as db_owner and create a new schema with the name of...
May 11, 2009 at 6:09 am
Hi,
It's good query, but it not works in SQL 2000
Is there any query, which will give the same outpur and can use in SQL 2000
April 10, 2009 at 4:15 am
Hi,
You can use this query to get the tablename and rowcount of a database
select so.name, si.rowcnt from sysobjects so
join sysindexes si on so.id = si.id and so.type = 'U'
April 9, 2009 at 1:14 am
Thanks all,
I downloaded the XPSMTP80.DLL and added it in database. Now I able to generate the mail.
But I think that the dll file XPSMTP80 was made by some person with...
April 6, 2009 at 10:57 pm
Hi,
Try this on this way....
create table #table
(
row1 varchar(1000)
)
insert into #table select '01008,03072,0045,R,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-17'
insert into #table select '01008,03072,0046,R,,,,,,,,,,,,,,,,,,,,,,,,,,,,,311'
insert into #table select '01008,03072,0048,R,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12336'
insert into #table select '01008,03072,0049,R,,,,,,,,,,,,,,,,,,,,,,,,,,,,,986'
insert into #table select '01008,03072,0056,C,,,,,,,-1057'
insert into #table...
April 4, 2009 at 1:28 am
Viewing 7 posts - 1 through 7 (of 7 total)