You can get SQL Server table columns and sizes with this query. Just change “___TABLE___NAME___” value with your table name. CREATE TABLE #temp ( colname varchar(50) NULL, collen int NULL ) INSERT INTO #temp (colname, collen) SELECT column_name, character_maximum_length FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = ‘___TABLE___NAME___’ and data_type in(‘varchar’,'char’,'nvarchar’,'nchar’) SELECT * FROM #temp DROP TABLE […]
Şubat 27, 2013
A word about 404 errors One of the most common crawling errors are 404 errors, which occur when somebody tries to access a page that does not exist (usually because the page has been deleted or the user clicked on a broken or incorrect link). Most of the time, 404 errors can be ignored. However, […]
Şubat 26, 2013
It’s very rare that I use Telnet these days, so it took a long time for me to notice that by default it was not packaged with Windows 7. I did some research and found out that this was also true for Windows Vista. More than likely this was an attempt to make Windows more […]
Ocak 12, 2013
You can disable Hyper-V without deinstalling it. Start a command prompt with administrator rights and execute the following command:
Ekim 4, 2012
What is the Difference between POP and IMAP Mail Server? The using of IMAP to access your mailbox has advantages over POP3 and the difference of their working mechanism can be summarized in the following table. POP3 IMAP Since email needs to be downloaded into desktop PC before being displayed, you may have the following problems for POP3 access: […]
Eylül 12, 2012
Here are some things to try to speed up the indexing speed of your Lucene application. Please see ImproveSearchingSpeed for how to speed up searching. Be sure you really need to speed things up. Many of the ideas here are simple to try, but others will necessarily add some complexity to your application. So be sure your indexing speed is […]
Eylül 3, 2012
I decided to search for new generation db’s and learn when to use, and when to not. My list is as follows: 1. RavenDB - http://ravendb.net/ 2. JustOneDB – http://www.justonedb.com/ 3. MongoDB – http://www.mongodb.org/ 4. Apache CouchDB – http://couchdb.apache.org/
Nisan 24, 2013
0