Viewing 5 posts - 16 through 20 (of 20 total)
thanks for the replies.
it turns out that the name of my view had been created in error as a table, thats why i couldn't see it in the object explorer...
November 8, 2012 at 7:17 am
this is working now.
used:
SELECT TOP 100 PERCENT
WebFormData_2.FieldValue AS Surname,
WebFormData_7.FieldValue AS SpecialReq
FROM db.R
JOIN db.WebFormData WebFormData_2
ON db.R.WebFormRowId = WebFormData_2.WebFormRowId
and WebFormData_2.WebFormFieldId =98
left JOIN db.WebFormData WebFormData_7
ON db.R.WebFormRowId = WebFormData_7.WebFormRowId
and WebFormData_7.WebFormFieldId =99
July 31, 2012 at 8:58 am
Thanks for all the replies.
I asked the network team to check the firewall.
it turns out it was indeed a firewall issue - it was outside our DMZ and wasn't allowed...
May 29, 2012 at 3:46 am
yes, same name, (just not NIGEL obviously for security reasons)
but it worked ok before as the same name on sql2000.
I realise now, it might not be good practice (as...
May 28, 2012 at 10:03 am
yeah, I have changed the web.config in 2 places.
here is a sample of my web.config:
<add name="SiteMyNamedServer connectionString="Data Source=123.45.67.89;Initial Catalog=NIGEL;user ID=NIGEL;Password=MyPasswd" />
</connectionStrings>
<appSettings>
<add key="SiteMyNamedServer value="Data Source=123.45.67.89;Initial Catalog=NIGEL;user ID=NIGEL;Password=MyPasswd" />
May 28, 2012 at 9:27 am
Viewing 5 posts - 16 through 20 (of 20 total)