User Ted Elliott - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:12:36Zhttp://stackoverflow.com/feeds/user/16501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766836/method-of-simulating-views-on-a-sql-server-with-read-only-access/1767851#17678510Answer by Ted Elliott for Method of simulating views on a SQL Server with read-only access?Ted Elliott2009-11-20T01:54:56Z2009-11-20T01:54:56Z<p>I would look at the query plan in Management studio and see if you can tell why its not performing well. Maybe you need to rewrite your query. You might also make use of table level variables as temporary tables to store intermediate results if that helps. Just make sure you're not storing a lot of records in them. You can run multiple statements in a batch like this:</p>
<pre><code>DECLARE @tempTable TABLE
(
col1 int,
col2 varchar(250)
)
INSERT INTO @tempTable (col1, col2)
SELECT a, b
FROM SomeTable
WHERE a < 100 ... /* some complex query */
SELECT *
FROM OtherTable o
INNER JOIN @tempTable T
ON o.col1 = T.col1
WHERE ...
</code></pre>
http://stackoverflow.com/questions/1653217/how-do-i-figure-out-the-smtpport-for-my-localhost/1653229#16532290Answer by Ted Elliott for How do I figure out the smtp_port for my localhost?Ted Elliott2009-10-31T02:44:10Z2009-10-31T02:44:10Z<p>Do you have a smtp server installed? Is it running? Not sure what platform you are on, but on windows you can run "netstat -a" from the command line and look for a status of "LISTENING"</p>
http://stackoverflow.com/questions/188241/which-version-of-stringcomparer-to-use4Which Version of StringComparer to useTed Elliott2008-10-09T17:10:30Z2009-10-13T10:57:04Z
<p>If I want to have a case-insensitive string-keyed dictionary, which version of StringComparer should I use given these constraints:</p>
<ul>
<li>The keys in the dictionary come from either C# code or config files written in english locale only (either US, or UK)</li>
<li>The software is internationalized and will run in different locales</li>
</ul>
<p>I normally use StringComparer.InvariantCultureIgnoreCase but wasn't sure if that is the correct case. Here is example code:</p>
<pre><code>Dictionary< string, object> stuff = new Dictionary< string, object>(StringComparer.InvariantCultureIgnoreCase);
</code></pre>
http://stackoverflow.com/questions/1523031/invalidoperationexception-when-calling-methods-on-wmi-object/1523047#15230471Answer by Ted Elliott for InvalidOperationException when calling methods on WMI objectTed Elliott2009-10-06T00:20:15Z2009-10-06T00:20:15Z<p>You've got a typo in your sample code, not sure if it's in your real code or not. You've got Win23_Process, which should be Win32_Process. Also Create for Win32_Process needs arguments such as command-line, directory, etc.</p>
http://stackoverflow.com/questions/913735/how-to-move-insert-caret-on-textbox-when-accepting-a-drop0How to move insert caret on textbox when accepting a DropTed Elliott2009-05-27T02:52:04Z2009-09-30T12:21:08Z
<p>I have a TreeView and a Multiline Textbox together on the same form in a Windows form. I have drag and drop setup so that I can drag a node from the TreeView over to the textbox and insert text into the textbox (this is working).</p>
<p>I would like to enhance this so that as the mouse is dragged over the textbox some sort of indicator moves along through the text showing the user where the text will be inserted at, and when dropped it gets inserted at that position. Currently I just put the text at SelectionStart, but the drag operation does not update SelectionStart so its at whereever the user last had the cursor.</p>
<p>Here's my current code:</p>
<pre><code> private void treeView1_ItemDrag(object sender, ItemDragEventArgs e)
{
if (e.Button != MouseButtons.Left)
return;
object item = e.Item;
treeView1.DoDragDrop(((TreeNode)item).Tag.ToString(), DragDropEffects.Copy | DragDropEffects.Scroll);
}
private void textBox1_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.StringFormat))
{
e.Effect = DragDropEffects.Copy | DragDropEffects.Scroll;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void textBox1_DragDrop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.StringFormat))
{
textBox1.SelectionLength = 0;
textBox1.SelectedText = (string)e.Data.GetData(DataFormats.StringFormat);
}
}
</code></pre>
http://stackoverflow.com/questions/566028/teradata-linked-server-in-sql-2005/1430072#14300720Answer by Ted Elliott for Teradata Linked Server in SQL 2005Ted Elliott2009-09-15T23:00:40Z2009-09-15T23:00:40Z<p>Can you select from the DBC.Tables views with the user you are connecting as? </p>
<pre><code>SELECT * from DBC.TablesVX
</code></pre>
http://stackoverflow.com/questions/772246/add-a-sequential-number-on-create-insert-teradata/1430055#14300550Answer by Ted Elliott for Add a sequential number on create / insert - TeradataTed Elliott2009-09-15T22:56:43Z2009-09-15T22:56:43Z<p>This works too:</p>
<pre><code>create table temp1 as
(
select
ROW_NUMBER() over( ORDER BY col1 ) insert_num
,col1
,col2
,col3
from a join b on a.id=b.id
) with data ;
</code></pre>
http://stackoverflow.com/questions/1090909/a-99-99-numeric-from-flat-file-doesnt-want-to-go-in-a-numeric4-2sql-server/1355750#13557500Answer by Ted Elliott for A 99.99 numeric from flat file doesn't want to go in a NUMERIC(4,2)'SQL ServerTed Elliott2009-08-31T04:13:02Z2009-08-31T04:13:02Z<p>Haven't used SSIS a whole lot, but can't you set the regional settings on the File Source or at least set the decimal separator?</p>
http://stackoverflow.com/questions/1205235/import-log-file-from-an-web-application-should-i-do/1355741#13557410Answer by Ted Elliott for Import log file from an web application, should I do ?Ted Elliott2009-08-31T04:07:19Z2009-08-31T04:07:19Z<p>Not sure what kind of "logs" you are dealing with, but MS Log Parser might be of some help to you. You can download it <a href="http://www.microsoft.com/DownLoads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&displaylang=en" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/876493/antlr-equivalent-to-bison-reject-action/1355669#13556691Answer by Ted Elliott for ANTLR equivalent to bison REJECT action ?Ted Elliott2009-08-31T03:26:05Z2009-08-31T03:26:05Z<p>You've got some overlap between CONTINUOUS_VALUE and IDENTIFIER (the chars in IDENTIFIER are a subset of CONTINUOUS_VALUE. There's probably a couple of ways to solve this. One way would be to start CONTINUOUS_VALUE with the '=' and then strip it out of the text. In CSharp it would look like this:</p>
<pre><code>CONTINUOUS_VALUE
: '=' ~( ALL_WS )+ { Text = Text.Substring(1, Text.Length - 1); }
;
</code></pre>
<p>Then just take the '=' out of the commandParam rule.</p>
<p>The 2nd way would be to make IDENTIFIER and CONTINUOUS_VALUE parser rules (lower-case at least the first letter), then you have context to figure out which one should match. You might be able to make them fragments as well and reference them in commandParam, but I'm not sure if you can nest fragments or not since you already have the ALL_WS fragment.</p>
<p>Also, don't you need some sort of separator between the NameValue pairs?</p>
http://stackoverflow.com/questions/1222831/handling-multiple-return-values-in-antlr/1355496#13554961Answer by Ted Elliott for Handling multiple return values in ANTLRTed Elliott2009-08-31T01:57:47Z2009-08-31T01:57:47Z<p>You have 2 title_args in your expression, you need to alias them. Try this:</p>
<pre><code>| '[' t1=title_args {$v.add($t1.ele);} (',' t2=title_args {$v = $t2.ele ;})* ']'
</code></pre>
<p>t1 and t2 are arbitrary aliases you can choose anything you want as long as they match up. </p>
http://stackoverflow.com/questions/1291153/building-own-c-compiler-using-antlr-compilation-unit/1352933#13529333Answer by Ted Elliott for Building own C# compiler using ANTLR: Compilation UnitTed Elliott2009-08-30T02:35:20Z2009-08-30T02:35:20Z<p>You can set the AST tree type in your grammar options at the top of the file like so: </p>
<pre><code>tree grammar CSharpTree;
options {
ASTLabelType = CommonTree
}
</code></pre>
<p>I would build a 3rd grammar or work it into your existing parser grammar that turns the tree into classes that you create. For example assume you've got a rule that matches the plus operator and it's 2 arguments. You can define a rule matching that tree that creates a class that you've written, let's call it PlusExpression like this:</p>
<pre><code>plusExpr returns [PlusExpression value]
: ^(PLUS left=expr right=expr) { $value = new PlusExpression($left.value, $right.value); }
</code></pre>
<p>expr would be another rule in your grammar matching expressions. left and right are just aliases given to the tree values. The part in between the { }'s is pretty much turned into C# code verbatim with the exception of replacing the variable references. The .value property off of $left and $right comes from the return specified off of the rules that they were created from.</p>
http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers/1258332#12583321Answer by Ted Elliott for What are the important notions in C that you did not learn from your teachers Ted Elliott2009-08-11T03:21:25Z2009-08-11T03:21:25Z<p>I wish my professors had taught us how to use the debugger. Instead I fumbled through instrumenting my code with printf's trying to figure out problems. Discovering gdb was like turning on a lightbulb. Being able to debug a crash using a core dump was especially helpful since a lot of newb C programming errors usually arise from bad pointer logic.</p>
<p>Nowadays unit testing would probably be a good practice to teach.</p>
http://stackoverflow.com/questions/1173132/performance-counters-incrementing-improperly/1173205#11732050Answer by Ted Elliott for Performance counters incrementing improperly?Ted Elliott2009-07-23T17:13:26Z2009-07-23T17:13:26Z<p>That behavior is how it should work. Increment and IncrementBy are essentially thread-safe versions of what you could do yourself by modifying RawValue directly. When the counter is only accessed by a single thread these statements:</p>
<pre><code>counterVariable.RawValue++;
counterVariable.RawValue += 2;
</code></pre>
<p>are equivalent to these statements:</p>
<pre><code>counterVariable.Increment();
counterVariable.IncrementBy(2);
</code></pre>
<p>If accessed by multiple threads, modifying RawValue directly is not thread-safe and can possibly lose some of the updates.</p>
http://stackoverflow.com/questions/1099916/string-replacement-in-page-created-from-template/1101418#11014181Answer by Ted Elliott for string replacement in page created from templateTed Elliott2009-07-09T01:36:08Z2009-07-09T01:36:08Z<p>Can you store their values in another file(xml maybe) or in a database? That way their input is not compiled into your page. Then you just read the data into variables. Then all you have to worry about is html, which your html encode would take care of.</p>
http://stackoverflow.com/questions/942849/java-chain-exception/942860#9428601Answer by Ted Elliott for java chain exceptionTed Elliott2009-06-03T02:51:28Z2009-06-03T02:51:28Z<p>You need to add "throws SomeException" to your method declaration. You need to specify any exception types that your method throws except for exceptions that descend from RuntimeException.</p>
http://stackoverflow.com/questions/885742/createfile-error-in-windows7/885754#8857540Answer by Ted Elliott for CreateFile error in Windows7Ted Elliott2009-05-20T01:17:00Z2009-05-20T01:17:00Z<p>You're program probably needs to run as Administrator. You'll have to escalate your privileges, even if you are an administrator. Right click when you run the program and click "Run as Administrator", or edit the properties and select always run as administrator.</p>
http://stackoverflow.com/questions/174863/how-to-turn-off-warning-for-no-xml-comment-in-vs-20052How to turn off warning for no xml comment in VS 2005Ted Elliott2008-10-06T15:50:36Z2009-03-22T18:44:27Z
<p>At some point in time I turned on a setting in Visual Studio 2005 that produces a warning when methods/classes don't have an xml comment associated with them. I would like to turn this off, but can't seem to find the setting again. Anyone know where this is?</p>
http://stackoverflow.com/questions/610227/how-can-import-xlsx-file-to-sql-server-2000/652816#6528160Answer by Ted Elliott for How can import xlsx file to Sql server 2000Ted Elliott2009-03-17T02:17:02Z2009-03-17T02:17:02Z<p>You could use an OLEDB connection, assuming DTS supports it. It's been a while since I've used it, so I can't remember. Connection looks something like this: Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myExcel2007file.xlsx;Extended Properties="Excel 12.0 Xml;HDR=YES";</p>
<p>If your DTS server doesn't have Office installed you'll need to install the drivers:
<a href="http://www.microsoft.com/downloads/details.aspx?familyid=7554F536-8C28-4598-9B72-EF94E038C891&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=7554F536-8C28-4598-9B72-EF94E038C891&displaylang=en</a></p>
http://stackoverflow.com/questions/590442/deciding-between-an-artificial-primary-key-and-a-natural-key-for-a-products-table/590738#5907380Answer by Ted Elliott for Deciding between an artificial primary key and a natural key for a Products tableTed Elliott2009-02-26T14:22:21Z2009-02-26T14:22:21Z<p>Since you're dealing with data from multiple vendors outside of your control, I would use a surrogate key. You don't want to have to rearchitect your database design one day when one of them happens to send you a duplicate.</p>
http://stackoverflow.com/questions/534439/sql-statement-using-parameters-is-slow-fast-without-them/534480#5344800Answer by Ted Elliott for Sql statement using parameters is slow, fast without them.Ted Elliott2009-02-10T22:20:46Z2009-02-10T22:20:46Z<p>I believe parameter sniffing applies to this as well since SQL Server caches the execution plan for SQL statements just like it does for Stored procs. You may try to clear the statement cache and rerun the statement with the same parameters where it is fast and see if it speeds up.</p>
http://stackoverflow.com/questions/216749/cant-create-xmlns-reference-to-other-project-in-xaml2Can't create xmlns reference to other project in XAMLTed Elliott2008-10-19T18:06:02Z2009-02-07T13:46:44Z
<p>I have a WPF project defined like this:</p>
<pre>
MyApp.sln
MyAppWPF
MyApp.Domain
</pre>
<p>In one of my xaml files in the MyAppWPF project I'm trying to reference a class defined in MyApp.Domain project. I have a <strong>project reference</strong> in MyAppWPF to MyApp.Domain. I am trying to create the reference like this:</p>
<pre>
<Window x:Class="MyAppWPF.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MyApp.Domain;assembly=MyApp.Domain"
Title="Window1" Height="305" Width="485">
<Window.Resources>
<local:MyClass x:Key="mine" />
</Window.Resources>
</Window>
</pre>
<p>I get an error saying the assembly cannot be found, however I can create an instance of the class I want to reference in the code behind, so I know I've got it referenced correctly.</p>
<p>How do I do this? Do I need a strong name, or reference the dll directly instead of using a project reference?</p>
http://stackoverflow.com/questions/505970/asynchronous-sqlcommand-and-ccr/506000#5060001Answer by Ted Elliott for Asynchronous SQLCommand and CCRTed Elliott2009-02-03T04:22:21Z2009-02-03T04:22:21Z<p>The connection must remain open for the Reader to work. I believe closing the connection is your problem. Leave the connection open and call dispose on the reader when done and I think that should clean up the connection.</p>
http://stackoverflow.com/questions/484165/tsql-howto-add-a-char-to-a-select-statement/484300#4843000Answer by Ted Elliott for TSQL: Howto add a char to a select statement.Ted Elliott2009-01-27T17:15:05Z2009-01-27T17:15:05Z<p>You can't do this in a single select statement in SQL Server 2000. SQL Server 2000 has no ROWNUM statement.</p>
<p>If you want to use a temp table you could do it with IDENTITY function.</p>
<p>SELECT IDENTITY(int,1,1) rownum, id, descr INTO #mytable from mytable</p>
<p>SELECT CASE WHEN ROWNUMBER < 4
THEN CHAR(65 + ROWNUMBER - 1)
ELSE ''
AS
,X.id
,X.descr
FROM #mytable X
ORDER BY rownum</p>
<p>NOTE: IDENTITY function can only be used in a SELECT INTO statement.</p>
http://stackoverflow.com/questions/443638/as-a-programmer-what-are-some-telltale-signs-that-youre-about-to-get-fired-or-l/449554#4495542Answer by Ted Elliott for As a programmer, what are some telltale signs that you're about to get fired or laid off?Ted Elliott2009-01-16T05:04:54Z2009-01-16T05:04:54Z<p>If it's time for your annual review and its being delayed (more than usual), then this might be a bad sign.</p>
<p>Also impromptu meeting of the whole company or department is usually a sign, although that's usually only about 5 minutes notice.</p>
http://stackoverflow.com/questions/357695/how-do-you-specify-the-access-specifier-on-an-antlr-v3-generated-parser-or-lexer/373646#3736460Answer by Ted Elliott for How do you specify the access specifier on an ANTLR v3 generated parser or lexer?Ted Elliott2008-12-17T04:19:16Z2008-12-17T04:19:16Z<p>I wanted to know the same thing, from looking at the template that it uses, it doesn't look like you can. "public" is hard coded.</p>
http://stackoverflow.com/questions/357594/what-is-wrong-with-this-query-cant-get-rownumber-to-work/357611#3576116Answer by Ted Elliott for What is wrong with this query? Can't get ROW_NUMBER() to work.Ted Elliott2008-12-10T21:06:36Z2008-12-10T21:06:36Z<p>Move your Row criteria into the outer select</p>
<pre><code>SELECT * FROM (SELECT ROW_NUMBER() OVER (ORDER BY hrl.Frn) as Row,
...
WHERE hc.Entity_Type = 'L' AND hrl.LicenseStatusId IN (1)
) T
WHERE T.Row >=1 and T.Row <= 20)
</code></pre>
http://stackoverflow.com/questions/344327/filtering-an-objects-properties-by-name/344688#3446880Answer by Ted Elliott for Filtering an Objects Properties by NameTed Elliott2008-12-05T18:04:43Z2008-12-05T18:04:43Z<p>You might consider decorating your properties with attributes that tell what action needs to be done to them.</p>
<pre><code>public class MyClass {
[CheckMe]
public int PropertyOne { get; set; }
[DontCheckMe]
public int PropertyTwo { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/308963/how-to-split-oracle-sql-statements-for-ado-net1How to split Oracle sql statements for ADO.NETTed Elliott2008-11-21T14:40:29Z2008-11-21T15:01:16Z
<p>What is the proper way to split up SQL statements to send to an Oracle ADO.NET client? For instance, lets say you have the following code in a text file and want to execute these statements:</p>
<pre><code>CREATE TABLE foo (bar VARCHAR2(100));
INSERT INTO foo (bar) VALUES('one');
INSERT INTO foo (bar) VALUES('two');
</code></pre>
<p>I believe trying to send all those in one Command will cause Oracle to complain about the ";". My first thought would be to split on ";" character, and send them one at a time.</p>
<p>But, Stored procedures can contain semi-colons as well, so how would I make it so the split routine would keep the whole stored proc together? Does it need to look for begin/end statements as well, or "/"?</p>
<p>Is there any difference in these respects between ODP.NET and the Micrsoft Oracle Provider?</p>
http://stackoverflow.com/questions/265117/mysql-import-csv-problem/265174#2651745Answer by Ted Elliott for mysql import csv problemTed Elliott2008-11-05T13:54:26Z2008-11-05T13:54:26Z<p>Your fields are terminated by ";" not "\"". Change</p>
<pre><code> FIELDS TERMINATED BY '\"'
</code></pre>
<p>to</p>
<pre><code> FIELDS TERMINATED BY ';'
</code></pre>
<p>You could add this as well:</p>
<pre><code> OPTIONALLY ENCLOSED BY '"'
</code></pre>
<p>which I think is what you were trying to do with the TERMINATED BY clause.</p>
http://stackoverflow.com/questions/1523031/invalidoperationexception-when-calling-methods-on-wmi-object/1523047#1523047Comment by Ted Elliott on InvalidOperationException when calling methods on WMI objectTed Elliott2009-10-10T13:42:45Z2009-10-10T13:42:45ZI thought that looked a little suspect as well, but I wasn't sure if it was valid or not. Not sure what you are trying to do with WMI, but you might give powershell a try. It's a little easier on the fingers.http://stackoverflow.com/questions/913735/how-to-move-insert-caret-on-textbox-when-accepting-a-drop/1497774#1497774Comment by Ted Elliott on How to move insert caret on textbox when accepting a DropTed Elliott2009-10-01T01:49:17Z2009-10-01T01:49:17ZVery irritating indeed. I may have to try this out. My workaround was to just append an extra space on start drag, so that you could drop at the end of the text and then remove the space on drop.http://stackoverflow.com/questions/343299/bulk-insert-to-oracle-using-net/343400#343400Comment by Ted Elliott on Bulk Insert to Oracle using .NETTed Elliott2009-09-24T13:40:33Z2009-09-24T13:40:33ZYou can't use SQLBulkCopy to load into Oracle, only SQL Server. However if you're using ODP.NET, Oracle has it's own API, OracleBulkCopyhttp://stackoverflow.com/questions/722921/antlr-and-dsl-parsing-for-dummies-whitespace-handling/722997#722997Comment by Ted Elliott on ANTLR and DSL parsing for dummies: whitespace handlingTed Elliott2009-08-31T01:52:43Z2009-08-31T01:52:43Zalso, once you do that you shouldn't need to include WS in your parser rules.http://stackoverflow.com/questions/1281913/sql-unique-constraint/1281919#1281919Comment by Ted Elliott on sql unique constraintTed Elliott2009-08-15T14:07:08Z2009-08-15T14:07:08ZTechnically (null = null) is NULL, which is interpreted as false.http://stackoverflow.com/questions/1252672/ankhsvn-vs-visualsvn/1252732#1252732Comment by Ted Elliott on AnkhSVN vs VisualSVNTed Elliott2009-08-10T01:50:36Z2009-08-10T01:50:36ZAnkhSVN is definitely better since 2.0, it's worth a try.http://stackoverflow.com/questions/999181/how-to-find-who-locks-who-is-mssql-server-2005/999238#999238Comment by Ted Elliott on how to find who locks who is MSSQL Server 2005 Ted Elliott2009-06-16T02:15:00Z2009-06-16T02:15:00ZCalling "DBCC INPUTBUFFER(spid)" with the spid you get back from sp_who will also show the last sql statement that the process ran.http://stackoverflow.com/questions/216749/cant-create-xmlns-reference-to-other-project-in-xamlComment by Ted Elliott on Can't create xmlns reference to other project in XAMLTed Elliott2009-06-16T02:09:15Z2009-06-16T02:09:15ZNo, but I haven't really looked at it much since I asked the question. It was just an app to learn WPF on.http://stackoverflow.com/questions/913735/how-to-move-insert-caret-on-textbox-when-accepting-a-dropComment by Ted Elliott on How to move insert caret on textbox when accepting a DropTed Elliott2009-05-27T23:02:00Z2009-05-27T23:02:00ZThat's what I was looking for. Thanks!http://stackoverflow.com/questions/484165/tsql-howto-add-a-char-to-a-select-statement/484300#484300Comment by Ted Elliott on TSQL: Howto add a char to a select statement.Ted Elliott2009-01-27T17:18:52Z2009-01-27T17:18:52ZI guess you can do it in one statement, looks like Cade's SQL 2000 solution might work.http://stackoverflow.com/questions/372230/best-practice-for-graceful-replace-of-read-only-sql-server-database/372322#372322Comment by Ted Elliott on Best practice for graceful replace of read-only SQL Server databaseTed Elliott2008-12-16T19:11:09Z2008-12-16T19:11:09ZBe aware of connection pooling with this approach. Connections may remain open, even though noone is actually executing anything. ADO.NET does connection pooling by default.http://stackoverflow.com/questions/308963/how-to-split-oracle-sql-statements-for-ado-net/309003#309003Comment by Ted Elliott on How to split Oracle sql statements for ADO.NETTed Elliott2008-11-21T16:12:42Z2008-11-21T16:12:42ZI'm trying to execute user entered SQL basically and have the app slice it up correctly to send to the ADO.NET client.