Viewing 4 posts - 1 through 5 (of 5 total)
HI,
I don't know if I understand your doubt, Do you want filter the DeptoId parameter?
You can filter the Dataset of DeptoId using the statment like this:
Select Depto, DeptoId
from Depto
where IdCompany...
April 19, 2011 at 9:56 am
HI,
I don't know if I understand your doubt, Do you want filter the DeptoId parameter?
You can filter the Dataset of DeptoId using the statment like this:
Select Depto, DeptoId
from Depto
where IdCompany...
April 19, 2011 at 9:56 am
Andreas,
you need a geometry layer, try use a Shapefile or spatial data with a geometry column, after this you need create a layer with your geography column.
March 29, 2011 at 7:39 am
Marios,
try to use this code:
;WITH XMLNAMESPACES (
DEFAULT'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition',
'http://schemas.microsoft.com/SQLServer/reporting/reportdesigner'
AS rd)
SELECTIV.name,IV.[PATH],t.value('DataSourceName[1]', 'varchar(100)') as Data_Source,DS.[PATH] as DataSourcePATH
FROM (
SELECTname, [PATH], cast(cast(content as varbinary(max)) as xml) as content_as_xml
fromdbo.[Catalog]
WHEREType = 2
and content is not null...
March 29, 2011 at 7:18 am
Viewing 4 posts - 1 through 5 (of 5 total)