| Language | Translation | Phonetic Pronunciation |
|---|---|---|
| Afrikaans | Voorspoedige Nuwe Jaar! | |
| Albanian | Gëzuar Vitin e Ri! | |
| Arabic | سنة جديدة سعيدة | |
| Armenian | Շնորհավոր Նոր Տարի | Shnorhavor Nor Tari |
| Belarusian | З Новым годам! | Z Novym hodam! |
| Bulgarian | Честита Нова Година! | Chestita Nova Godina! |
| Catalan | Feliç Any Nou! | |
| Chinese Simplified | 新年快乐 | Xīnnián kuàilè! |
| Chinese Traditional | 新年快樂 | Xīnnián kuàilè! |
| Croatian | Sretna Nova Godina! | |
| Czech | Šťastný Nový Rok! | |
| Danish | Godt Nytår! | |
| Dutch | Gelukkig Nieuw Jaar! | |
| Estonian | Head uut Aastat! | |
| Filipino | Masaya Bagong Taon! | |
| Finnish | Hyvää Uutta Vuotta! | |
| French | Joyeux Nouvel An! | |
| Galician | Feliz Ano! | |
| German | Glückliches Neues Jahr! | |
| Greek | Ευτυχισμένο το Νέο Έτος! | Ef̱tychisméno to Néo Étos |
| Haitian Creole | Kontan Ane Nouvo! | |
| Hebrew | שנה טובה | |
| Hindi | नया साल मुबारक हो! | Nayā sāla mubāraka hō! |
| Hungarian | Boldog Új Évet! | |
| Icelandic | Gleðilegt Nýtt Ár! | |
| Indonesian | Selamat Tahun Baru! | |
| Irish | Athbhliain faoi mhaise daoibh! | |
| Italian | Felice Anno Nuovo! | |
| Japanese | 明けましておめでとうございます | Akemashite omedetōgozaimasu |
| Korean | 새해 복 많이 | saehae bog manh-i |
| Latvian | Laimīgu Jauno gadu! | |
| Lithuanian | Laimingų Naujųjų Metų! | |
| Macedonian | Среќна Нова Година! | Sreḱna Nova Godina! |
| Malay | Selamat Tahun Baru! | |
| Maltese | Sena l-ġdida Kuntenti! | |
| Norwegian | Godt Nytt År! | |
| Persian | رسید سال نوی خوشی | |
| Polish | Szczęśliwego Nowego Roku! | |
| Portuguese | Feliz Ano Novo! | |
| Romanian | An Nou Fericit! | |
| Russian | С Новым годом! | S Novym godom! |
| Serbian | Срећна Нова година! | Srećna Nova godina! |
| Slovak | Šťastný Nový Rok! | |
| Slovenian | Srečno novo leto! | |
| Spanish | Feliz Año Nuevo! | |
| Swahili | Furaha ya Mwaka Mpya! | |
| Swedish | Gott Nytt År! | |
| Thai | สวัสดีปีใหม่ | S̄wạs̄dī pī h̄ım̀ |
| Turkish | Mutlu yıllar! | |
| Ukrainian | З Новим роком! | Z Novym rokom! |
| Vietnamese | Chúc mừng năm mới | |
| Welsh | Blwyddyn Newydd Dda! | |
| Yiddish | גליקלעך ניו יאָר |
12/30/10
Happy New Year!
Translations by Google Translate API.
Labels:
2011,
google translate api,
happy new year,
languages
12/5/10
SQL Server Command Line Utility - SqlCmd
http://msdn.microsoft.com/en-us/library/ms162773.aspx
path: c:\program files\microsoft sql server\100\tools\binn\sqlcmd.exe
powershell examples
path: c:\program files\microsoft sql server\100\tools\binn\sqlcmd.exe
powershell examples
- execute command-line query, connect using SQL Server Authentication
&sqlcmd -S SERVER -d DB -U LOGIN -P 'PASSWORD' -q 'select getdate()'
- execute command-line query, connect using SQL Server Authentication, password prompt
&sqlcmd -S SERVER -d DB -U LOGIN -q 'select getdate()'
- execute command-line query, connect using Windows Authentication
&sqlcmd -S SERVER -d DB -E -q 'select getdate()'
- execute sql script file
&sqlcmd -S SERVER -d DB -E -i x:\sql\script1.sql
- execute all sql script files in a folder
gci x:\sql\ *.* | %{ &sqlcmd -S SERVER -d DB -E -i $_.fullname }
- exit or quit
- command-line options
[-? show syntax summary]
[-a packetsize]
[-A dedicated admin connection]
[-b On error batch abort]
[-c cmdend]
[-C Trust Server Certificate]
[-d use database name]
[-e echo input]
[-E trusted connection]
[-f <codepage> | i:<codepage>[,o:<codepage>]]
[-h headers]
[-H hostname]
[-i inputfile]
[-I Enable Quoted Identifiers]
[-k[1|2] remove[replace] control characters]
[-l login timeout]
[-L[c] list servers[clean output]]
[-m errorlevel]
[-N Encrypt Connection]
[-o outputfile]
[-p[1] print statistics[colon format]]
[-P password]
[-q "cmdline query"]
[-Q "cmdline query" and exit]
[-r[0|1] msgs to stderr]
[-R use client regional setting]
[-s colseparator]
[-S server]
[-t query timeout]
[-u unicode output]
[-U login id]
[-v var = "value"...]
[-V severitylevel]
[-w screen width]
[-W remove trailing spaces]
[-x disable variable substitution]
[-X[1] disable commands, startup script, enviroment variables [and exit]]
[-y variable length type display width]
[-Y fixed length type display width]
[-z new password]
[-Z new password and exit]
Labels:
powershell,
sqlcmd,
sqlserver,
utility
Subscribe to:
Comments (Atom)