Forum Replies Created

Viewing 15 posts - 226 through 240 (of 251 total)

  • RE: Lookup database script to a value within all table

    No I don't mind, but here it is modified ro do exactly what you wished to do. And I greatly improved the speed, by only doing the casts for unicode...

  • RE: Lookup database script to a value within all table

    Wow, weird, I have been writing a script this morning to do that very thing. I

    am searching for ASCII zeroes in all of my string columns. This is probably...

  • RE: Text column size limit

    It is not a security issue, or the default size for the datatype, it is just that with longer text your display output will wrap in the results window. Often...

  • RE: Query Output to viewable text

    Having an interesting time trying to implement this control in VB. Probably need someone with more API knowledge than I to work on it. Useing RegisterClass, and CreateWindowEx I was...

  • RE: Query Output to viewable text

    Ok, the control that QA uses is one I am not familiar with. The class name is a "DimensionEdit" where as the base class name for a textbox is an...

  • RE: Need to append to text variable

    LOL, if he could I would polish his resume... But as far the sp_OA methods are

    concerned, it is nothing more than a way to create com objects in

    TSQL...

  • RE: Need to append to text variable

    K, Are you modifying the xml directly through the text variable? Maybe instead using the sp_OA methods you could use the dom object directly in your code to work on...

  • RE: Need to append to text variable

    Why not perform this logic within the web service itself? Long string manipulation would be better suited for a language more suited to that task. (VB, C++, VB.Net, or C#)

    IMHO...

  • RE: record creation advice

    Watch out for the problem with using @@IDENTITY with a table that has a trigger that inserts into another table that has an identity. Then you are back to selecting...

  • RE: Need to append to text variable

    Do you mind my asking what are you doing to the xml in stored proc A? and what is the purpose of stored proc B? I ask to see if...

  • RE: record creation advice

    Oops, just read that he is using an Access front end. If the back end is SQL Server 2000, he can use the scope_identity, and using it from a stored...

  • RE: record creation advice

    quote:


    Not sure if you can get it in Access, but you can get @@scope_identity (select it) to get the last identity value...

  • RE: PRINT statement output to screen

    Turn ON In QA - Options - Results :

    1) Scroll results as received (*)

    Specify that the results should be scrolled as they are returned.

    Edited by - tcartwright on 01/07/2003 ...

  • RE: Custom Error Message

    Typically the error trap you have presented here can leave the user confused and

    scratching their heads. What if is not a duplicate record, but some FK violation

    has occurred,...

  • RE: Suppress Trailing Zeros?

    Why would casting to a different datatype not work for you? A simple cast to the float datatype seems to work almost exactly as you wanted it to in your...

Viewing 15 posts - 226 through 240 (of 251 total)