Viewing 10 posts - 1 through 10 (of 10 total)
Hi ,
Thanks for the reply.
But the issue here is the value of <Parameters> node is comming from the client. ('/Parameters/xml')
So i can't hard code it as /Parameters/xml,...
January 12, 2006 at 7:22 am
Add the Server1 as linked server to Server2, using sp_addlinkedserver.
In Server2 Query Analyzer
sp_addlinkedserver 'server1'
Then in Server2 Queryanalyzer use this query to get the data
Select * from Server1.northwind.dbo.[tablename]
Regards,
Ramesh K
August 24, 2005 at 11:41 pm
Hi Arun,
Create a covered index on
DATETIMELASTMODIFIED , IDLocation columns and executre the query.
Script to create index
Create NonClustered index IX_DATE_ID ON TempReport (DATETIMELASTMODIFIED ,IDLocation )
Reagrds,
ramesh
August 23, 2005 at 1:05 am
Hi Sundeep,
Pleae find the ans for your Queries
1)Can i have a trigger inside a stored procedure.if "NO" then why.
If you have insert statment into a table ( on which trigger...
August 9, 2005 at 1:07 am
Hi,
Get the output in to one temp table like
select user_id,opdate,type,count(*) as Count into #temp
from table1
group by user_id,opdate,type
Select User_ID,opDate,
HIV_Count = Case When Type ='HIV' then Count Else 0...
August 1, 2005 at 1:39 am
Try this one.
Select convert(varchar(10),'12/06/05 11.23AM' ,121)
Regards,
Ramesh K
July 13, 2005 at 4:40 am
Kenneth.. Thanks for your great explnation.. now i am very clear about this..
Thanks,
Ramesh K
October 20, 2004 at 6:47 am
Thanks Gordon,
Can you give some info on performance related issues with these two diff types?
-- Ramesh K
October 7, 2004 at 10:44 pm
hai sravan,
exec xp_cmdshell 'Bcp dbname..@tbl out "D:\text.txt" --c -Pservername -Uusername -Ppassword..This line is in the stored procedure only. Still it is giving error.
Please help me
Ramesh
August 6, 2003 at 9:41 pm
Viewing 10 posts - 1 through 10 (of 10 total)