I have wrist pain when I type and I would like to start writing SQL statements, stored procedure, and views using speech recognition.
|
7
|
|
|
|
|
|
Yes. SQL is well-suited to speech recognition (as well-suited as a programming language can be, that is), given it's limited vocabulary and sentence-like structure. Aside from formatting the SQL so that it looks nice, I can dictate it much faster than typing. Dictating code isn't for everyone, however. It can be quite frustrating in the beginning. The people who try this and stick with it will probably be those who have no other choice. I use Dragon NaturallySpeaking 10 Professional. The Professional version has the tools that are needed to create a custom vocabulary like this. Version 9 should work fine, also. It's expensive, so try to get the company you work for to pay for it if possible. Get a decent headset microphone also. The one that comes with NaturallySpeaking isn't good enough (but you may want to try it first to see if it works for you). KnowBrainer is a good place for microphone recommendations. 2009-01-05 Update: I have added a new answer below with tips specific to dictating in SQL Server Management Studio. PreparationClean up your database names and codeDictating "
I switched to my TSQL vocabulary to dictate the above statement. Everything up to the Create a word list of SQL keywordsPut one word on each line. You can optionally follow a word with a backslash (\) and a pronunciation. NaturallySpeaking uses a small backup dictionary of words to determine the pronunciation of words you add to a vocabulary, so it has no problem figuring out how
Also add these words
Keep this list around, since you'll probably modify it several times and re-create your vocabulary to get it the way you like it. Create a word list of your database object namesThis is how I do it in SQL Server:
Copy and paste the results into a text file. Create pronunciations for your database object namesUse the same format for pronunciations as listed above. An easy way to create these is to use a regex search and replace function. In SQL Server Management Studio or Visual Studio the following (non-standard) regex will create pronunciations for two word mixed case names.
Review the pronunciations and clean up anything that doesn't look right. For acronyms, Create a text document that contains all of your SQL code (views, procedures, etc.)SQL Server:
Remove comments and literal strings. Regex search and replace works well for this. Build your vocabularyInstall NaturallySpeaking and create a new user if you have not already. Create a new vocabularyClick on "NaturallySpeaking | Manage Vocabularies...". Click New. Name the vocabulary something appropriate, such as "SQL". Base it on "Base General - Empty Dictation". When it asks you if you want to scan your email or documents, click cancel. Import wordsClick "Words | Import". Add the two word lists you created and import them. Adapt to writing styleClick "Tools | Accuracy Center". Click "Add words from your documents to the vocabulary". Use the default settings, and select the document you created which contains your code. Try dictating some SQLThe first thing you'll probably want to dictate is a select statement. Keep in mind that SELECT is what you use to begin a command in NaturallySpeaking that selects text. Because of this, you'll want to say "Cap" before dictating it so NaturallySpeaking doesn't get confused. That's it. Well, at least enough to get you started. Modify your word lists, pronunciations, and word properties as needed. There are other things you can do to increase accuracy and the speed at which you can dictate. As I think of them, I will edit this post and add them here. |
||||||||||
|
|
|
Tips for dictating into SQL Server Management StudioIf you dictate into SQL Server Management Studio, you may notice very slow performance. Try the following to alleviate this:
Query Analyzer from SQL Server 2000 does not have these issues. |
|||
|
|
