Tag Archive

Restore MySql database using command line

Published on December 17, 2009 By admin

mysql -u USER -p DBNAME < dump.sql Where: USER is your username DBNAME is Databas witch will be restored dump.sql (any .sql file can be used) is your database dump

Microsoft SQL Server – Data Types

Published on May 20, 2008 By admin

char[(n)] Fixed-length non-Unicode character data with length of n characters. n must be a value from 1 through 8,000. Storage size is n bytes. nchar[(n)] Fixed-length Unicode character data with length of n characters. n must be a value from 1 through 4,000. Storage size is two times n bytes. varchar[(n)] Variable-length non-Unicode character data [...]