Viewing 15 posts - 1 through 15 (of 32 total)
Hello,
This works thank you very much... A ++ SUPPORT !!
November 17, 2010 at 10:19 am
Hello,
below are the tables with sample data which you can use it!!
CREATE TABLE [dbo].[googlewords](
[ID] [int] IDENTITY(1,1) NOT NULL,
[WordsName] [varchar](100) NULL
)
INSERT INTO [dbo].[googlewords]
...
November 16, 2010 at 6:19 pm
Hi,
I have attached an attachment, which would be easy to explain me how i want the data.
Thank You
November 16, 2010 at 9:39 am
yes I can link more than one server but what if like in my case I have linked the server having database AA with its login details now when I...
June 17, 2010 at 10:58 am
ok, here is the explanation
the server to be linked has two databases namely database AA and database BB and both has two different logins, so when I link server using...
June 17, 2010 at 10:43 am
yes, I have linked the server by going into server objects but here is the problem database AA and database BB has different login but if you go through server...
June 17, 2010 at 10:32 am
try in this format
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'servername',@useself=N'False',@locallogin=NULL,@rmtuser=N'user',@rmtpassword='password'
GO
June 16, 2010 at 7:34 am
sorry my data was bad in the rows so didnt get correct results, but this queires helped me a lot..
thanks you guys !!
June 15, 2010 at 2:08 pm
for eg.
[productname] = U3300/I
[categoryname] = GUCCI
[brandname] = Sunglasses
[colorcode] = CO3
[colorname] = black
if this exact matches with another row having same values then it should give result in resultset for SELECT...
June 15, 2010 at 10:12 am
I tried it but I am not getting correct result my problem is if values in [productname] and [colorcode] and [colorname] and [categoryname] and [brandname] matches with another row having...
June 15, 2010 at 9:52 am
Eugene Elutin (6/2/2010)
biren (6/2/2010)
Eugene Elutin (6/2/2010)
It copies some records from Table_B to Table_A (condition is in WHERE clause) and at the same time it...
June 2, 2010 at 2:42 pm
Eugene Elutin (6/2/2010)
It copies some records from Table_B to Table_A (condition is in WHERE clause) and at the same time it deletes these copied...
June 2, 2010 at 11:51 am
basically what I am doing in here is Order_B is my live table which consists of the Order Details Data as shown in query, what I am doing is I...
June 2, 2010 at 11:06 am
elutin (6/2/2010)
create table #Table_A
( id int not null identity (1,1)
,val varchar(30)
)
create table #Table_B
( id int not null identity (1,1)
,val varchar(30)
)
...
June 2, 2010 at 10:52 am
Viewing 15 posts - 1 through 15 (of 32 total)