In the YQL Console, select yahoo.finance.options table (you may need to show community tables), then enter the following query, check Diagnostics:
SELECT * FROM yahoo.finance.options WHERE symbol='GOOG' AND expiration='2012-06'
No option data is returned, and you'll see the following error in the result set:
<javascript><![CDATA[Exception: TypeError: Cannot find function toInt in object . (<javascript>#90)]]></javascript>

same problem here.<br>option chains that have already expired still work (don't return the error). but not options that have not expired yet do not work and show the error above.<br><br><div class="quote "><div class="quotetop ">QUOTE<cite>(The Eagle @ 2 Feb 2012 10:02 AM)</cite><blockquote class="quotemain"><br>In the YQL Console, select yahoo.finance.options table (you may need to show community tables), then enter the following query, check Diagnostics:<br>SELECT * FROM yahoo.finance.options WHERE symbol='GOOG' AND expiration='2012-06'<br><br>No option data is returned, and you'll see the following error in the result set:<br><br><span class="sc3"><span class="re1"><span class="re4">><span></span></span><span class="re2"><!---->[</span>CDATA<span class="br0">[</span>Exception: TypeError: Cannot find function toInt in object . <span class="br0">(</span><span class="re1"><span class="re4">><span></span>#90)]]><span class="sc3"><span class="re1">></span></span></span></span></span></span></blockquote></div></div>

I have the same issue here, starting from Feb 2nd, no return for the query like:<br><br>http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.options%20where%20symbol%20in%20%28%22amzn%22%29%20%20and%20expiration=%222012-02%22%20&env=http://datatables.org/alltables.env<br><br>anyone has any solution yet? I need the returned option chain infos for my API. Very Sad Now!!<br><br><div class="quote"><div class="quotetop">QUOTE<cite>(The Eagle @ 2 Feb 2012 10:02 AM)</cite></div><blockquote class="quotemain"><br>In the YQL Console, select yahoo.finance.options table (you may need to show community tables), then enter the following query, check Diagnostics:<br>SELECT * FROM yahoo.finance.options WHERE symbol='GOOG' AND expiration='2012-06'<br><br>No option data is returned, and you'll see the following error in the result set:<br><br><span class="sc3"><span class="re1"><span class="re4">><span></span></span><span class="re2"><!---->[</span>CDATA<span class="br0">[</span>Exception: TypeError: Cannot find function toInt in object . <span class="br0">(</span><span class="re1"><span class="re4">><span></span>#90)]]><span class="sc3"><span class="re1">></span></span></span></span></span></span></blockquote></div>
Seems to be working fine now.
<br>No. Still doesn't work
Getting the same error here too. Haven't found a way around it.<br><br><div class="quote"><div class="quotetop">QUOTE<cite>(The Eagle @ 3 Feb 2012 5:19 PM)</cite></div><blockquote class="quotemain"><br>No. Still doesn't work</blockquote></div>
I've been seeing the same error since Feb. 1.
same error, been using it for months, stopped working.
The dev in charge on the open data side 'Thomas' fixed today. He has an open request for yahoo to pull into their codebase. Won't be long now till fix is active.
Link to bug fix intergration. When this is closed, we should be working again. https://github.com/yql/yql-tables/pull/153
Integrated, so it should be working tonight.
<p>Reading through the pull requests, it seems that the yql table is created by parsing the html page on Yahoo! Finance. Why isn't table populated directly from the raw data? Just curious.</p>

Also the CompanyName in yahoo.finance.stocks is "" my app has blow-up becuse of this as this field was crucial for the screen display on the Playbook. No matter what stock symbol is typed into the YQL console the result is always NULL.<br><br>As follows: <br><br>select * from yahoo.finance.stocks where symbol ="yhoo"<br><br>"results": {<br> "stock": {<br> "symbol": "yhoo",<br> <strong> "CompanyName": "",</strong><br> "start": "1996-04-12",<br> "end": "2012-02-13",<br> "Sector": "Technology",<br> "Industry": "Internet Information Providers",<br> "FullTimeEmployees": "N/A"<br> }<br><br>I have posted this issue 3 times here and once on stackoverflow.com still no resolution!!<br><br>Bob<br><br>