shashankmishra.blogspot.com
shashank mishra: Python Libraries For Scraping
http://shashankmishra.blogspot.com/2013/07/libraries-for-python-scraping.html
Tuesday, July 16, 2013. Python Libraries For Scraping. List of python scraping libraries I use to develop crawlers based on my choice of scraping library:. No other than - SCRAPY. Fast high-level screen scraping and web crawling framework, used to crawl websites and extract structured data from their pages. It can be used for a wide range of purposes, from data mining to monitoring and automated testing. UrlLib2 Beautiful Soup - If I had to build framework from scratch this is the first choice.
shashankmishra.blogspot.com
shashank mishra: ODP.NET Managed Data Access (Oracle.ManagedDataAccess.dll) with Enterprise Library
http://shashankmishra.blogspot.com/2014/07/odpnet-managed-data-access.html
Thursday, July 03, 2014. ODPNET Managed Data Access (Oracle.ManagedDataAccess.dll) with Enterprise Library. Oracle.ManagedDataAccess.dll is managed Oracle connector that doesn't require any Instant Client to be installed and offers advantage over unmanaged counterparts. It doesn't require any installation on the machine and Oracle.ManagedDataAccess.dll should be placed in execution directory or in probing directory specified in configuration. Exception occurred while: while resolving. To make Oracle....
shashankmishra.blogspot.com
shashank mishra: 2013-07-14
http://shashankmishra.blogspot.com/2013_07_14_archive.html
Tuesday, July 16, 2013. Python Libraries For Scraping. List of python scraping libraries I use to develop crawlers based on my choice of scraping library:. No other than - SCRAPY. Fast high-level screen scraping and web crawling framework, used to crawl websites and extract structured data from their pages. It can be used for a wide range of purposes, from data mining to monitoring and automated testing. UrlLib2 Beautiful Soup - If I had to build framework from scratch this is the first choice.
shashankmishra.blogspot.com
shashank mishra: The 'DbProviderFactories' section can only appear once per config file
http://shashankmishra.blogspot.com/2012/05/dbproviderfactories-section-can-only.html
Thursday, May 17, 2012. The 'DbProviderFactories' section can only appear once per config file. Open machine.config at:. C: Windows Microsoft.NET Framework v4.0.30319 Config Machine.Config. Providers added here -. Add name=". /. Line to be removed to resolve the issue. Posted by shashank mishra. Thanks for posting this. This error was preventing our click once application from starting and I never would have made the connection! We were about to rebuild the users profile. Glad to hear it worked for you :).
shashankmishra.blogspot.com
shashank mishra: 2012-05-13
http://shashankmishra.blogspot.com/2012_05_13_archive.html
Thursday, May 17, 2012. The 'DbProviderFactories' section can only appear once per config file. Open machine.config at:. C: Windows Microsoft.NET Framework v4.0.30319 Config Machine.Config. Providers added here -. Add name=". /. Line to be removed to resolve the issue. Posted by shashank mishra. Links to this post. Subscribe to: Posts (Atom). BeClasp Consulting Pvt. Ltd. The DbProviderFactories section can only appear . Simple template. Template images by luoman.
shashankmishra.blogspot.com
shashank mishra: 2014-11-30
http://shashankmishra.blogspot.com/2014_11_30_archive.html
Thursday, December 04, 2014. TTransportException SocketTimeoutException - Hive - Azure HDInsight Emulator. While working on Hive in Azure HDInsight Emulator I was not able to create database and following exception was being thrown with all the queries:. FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:Got exception: org.apache.thrift.transport. To resolve the issue and assuming Hadoop installation folder is C: hdp open hive-site.xml from:.
shashankmishra.blogspot.com
shashank mishra: Could not load file or assembly 'Oracle.DataAccess' or one of its dependencies. An attempt was made to load a program with an incorrect format
http://shashankmishra.blogspot.com/2012/04/could-not-load-file-or-assembly.html
Tuesday, April 17, 2012. Could not load file or assembly 'Oracle.DataAccess' or one of its dependencies. An attempt was made to load a program with an incorrect format. In IIS Set 'Enable 32bit Applications' to True for the application pool used in the site. If you are using ODP.NET in 64bit machine and have installed ODP.NET 32bit version you may get the error:. To resolve the issue:. Select application pool that is getting used in the site. Click on Advanced Settings. Enable 32-Bit Applications - True.
shashankmishra.blogspot.com
shashank mishra: SQL Server 2012 (Denali) New Features: Limit number of rows using OFFSET and FETCH clause
http://shashankmishra.blogspot.com/2012/01/sql-server-2012-denali-new-features.html
Monday, January 30, 2012. SQL Server 2012 (Denali) New Features: Limit number of rows using OFFSET and FETCH clause. Limiting the number of rows returned. Return all rows sorted by the column DepartmentID. SELECT ID, Name, GroupName. ORDER BY ID;. Skip the first 5 rows from the sorted result set and return all remaining rows. SELECT ID, Name, GroupName. ORDER BY ID OFFSET 5 ROWS;. Skip 0 rows and return only the first 10 rows from the sorted result set. SELECT ID, Name, GroupName. FETCH NEXT 10 ROWS ONLY;.
shashankmishra.blogspot.com
shashank mishra: TTransportException SocketTimeoutException - Hive - Azure HDInsight Emulator
http://shashankmishra.blogspot.com/2014/12/ttransportexception-sockettimeoutexcept.html
Thursday, December 04, 2014. TTransportException SocketTimeoutException - Hive - Azure HDInsight Emulator. While working on Hive in Azure HDInsight Emulator I was not able to create database and following exception was being thrown with all the queries:. FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:Got exception: org.apache.thrift.transport. To resolve the issue and assuming Hadoop installation folder is C: hdp open hive-site.xml from:.