 |
Exporting large amounts of Data from SQL
Danny Mehmed (2997 views)
Exporting Large amounts of Data from SQL
If you have ever had an issue transfering large amount of data from SQL you can use the command line tool to solve this problem.
From the command line
#s#bcp [<database_name.>[<owner>].]<table_name> out <csv-file> [/U<username>] [/P<password>] [/
|
 |
Title Case
Danny Mehmed (1766 views)
ToTitleCase - Making text Title Case
Whilst returning some data from LDAP, I found that it was returning in Upper Case, I needed it to be in Title case format.
I found this method of converting to title case
Title Case converts every first letter of a word in a sentence to upper case, and
|