Microsoft
Software
Hardware
Network
Question : sql server openquery multivalue
I want to query oracle database from sql server and put in a ssrs 2008 report.
The best way if have found is to use open query. I want to use multi-value parameter like the following.
SELECT * FROM OPENQUERY(LINKED_SERVER,'S
ELECT * FROM TABLE WHERE COLUMN IN (@MULTIVALUE_PARAMETER)')
Answer : sql server openquery multivalue
maybe this ?
REPLACE(@GRADE, '''', '''''')
to test...
declare @grade varchar(50)
set @grade = '''' + 'asdf' + ''''
print @grade
print REPLACE(@GRADE, '''', '''''')
Random Solutions
My option and command keys are switched on my mac
Globally change the Blackberry Service Display name
Lock down SMTP on Cisco ASA Or Exchange 2007 for MXlogic (Spam Filtering)
UTF-8 encoding
Track external IP address in ASA.
how to save blackberry notes
Determining the number of working days during a specified month
DAG & CAS array configured but it's not failover
Multiple Dll's in Delphi
A* algorithm 2D snake with obstacles max route