Forum Replies Created

Viewing 15 posts - 31 through 45 (of 98 total)

  • RE: SQL Debugging failed

    Do you get this message when in query analyzer and the stored proc window?

  • RE: How can I count text file row ?

    Another option which might be a little overkill, would be to use the odbc text driver to access the file as a recordset. Then just check the value of...

  • RE: using SHAPE language in a stored procedure

    Not sure a join will return the same hierarchy as using the shape provider. Depending on the amount of data returned and the frequency it is queried, you could...

  • RE: MULTIPLE ORDER BY in a stored procedure.

    Another approach would be to return the data as xml. Then, using client side script, resort the data. This way there is only one call to the db...

  • RE: Two potential subqueries for one result column

    Off the top of my head, try using the 'if exists' keywords to control what is queried.

    i.e.

    If exists(select * from table1)

    begin

    select serialnumber, (select * from table1) from table 3 where...

  • RE: Inconsistent Trigger

    Are you experiencing problems when doing multiple updates? If so, select everything from the inserted table into a cursor, then loop through the cursor to do the updates.

  • RE: spaces in data

    Not sure I'm clear on your problem. Is your problem in returning the query or populating the drop down with the correct values?

  • RE: ADO.NET or ADO?

    ADO.NET is definitly not overkill. ADO.NET is simply the next version of ADO. Its SqlDataReader and SqlCommand objects provides a low resource intensive method for selecting, inserting and...

  • RE: Calling store procedure from a DTS Package.

    Depending what you want to do with the results of the stored proc, you can execute it in an ActiveX Script task as well.

  • RE: .NET , Revolution or Assault?

    I've been coding C# in .NET since the Beta 2 release, specifically ASP.NET apps (A windows service or two as well and a web service or two).

    In addition to the...

  • RE: ADO and recordCount

    A few questions for you...

    Are you using a client or server side cursor? Does the table contain a text datatype column?

  • RE: ADO and recordCount

    Not sure...let me get back with an answer

  • RE: Delimited strings

    Stored procs are generally not the best places to do string manipulation. SQL is not optimized for it. Why are you using this method? Just curious, maybe...

  • RE: Full-Text Indexing Limitations

    Just want to make sure we're talking about full-text indexing rather than index server. If I recall, the problems we were having were with index server, not full-text indexing...

  • RE: xtype to ADO data type convesion table anyone?

    I dont know of a lookup table off the top of my head, but I'll look. I dont have the ids, but here are a few mappings:

    text data type...

Viewing 15 posts - 31 through 45 (of 98 total)