Get Table Columns And Sizes

Nisan 24, 2013

0

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 […]

Yayımlandığı yer: Db

Google Crawl Error 404

Şubat 27, 2013

0

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, […]

Yayımlandığı yer: SEO

Windows 7 – Enable Telnet

Şubat 26, 2013

0

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 […]

Yayımlandığı yer: Software

Disabling Hyper-V on Windows 8

Ocak 12, 2013

0

You can disable Hyper-V without deinstalling it. Start a command prompt with administrator rights and execute the following command:

Yayımlandığı yer: Software

Difference between POP3 and IMAP

Ekim 4, 2012

0

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: […]

Yayımlandığı yer: Software

How to make Lucene indexing faster

Eylül 12, 2012

0

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 […]

Yayımlandığı yer: Software

New Generation Dbs that can be used with .Net

Eylül 3, 2012

0

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/

Yayımlandığı yer: Db
Takip Et

Her yeni yazı için posta kutunuza gönderim alın.