Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,085 total)

  • RE: Checking for a character

    If you will look at my script, I have identified all records from a field in a table that have character 128 and above.  I did not know what you...

  • RE: SELECT TOP n FOR EACH m

    I included a $ column since you sounded as if you wanted the top 10 customers, I assumed you meant in purchasing... You could simply insert these into a #TempTable...

  • RE: best way to interact with MSDE

    If you do not want to use the Enterprise Manager, you can try with Access.  But I had a client that used MSDE for field operations and I really prefered...

  • RE: Checking for a character

    oops... should have been IF @TempValue > 128

    Sorry...

  • RE: Checking for a character

    I used to need to strip Alpha-numerics from a certain field.  I have changed it to try and fit your needs.  Hope it works...

     

    SET NOCOUNT ON

    DECLARE @CurrentID int,...

  • RE: problems when with GROUP BY clause

    If I am understanding this correctly, basically want the Client Number, name, etc., and the various money's (sales and commission amounts) printed out. 

    Then you want to add the various...

  • RE: Populating @Variables dynamically

    Thanks.  I have some time on this one and these suggestions will really help me plan out my approach - I imagine I will find a number of sprocs with...

  • RE: Server reboot

    A good while ago, we had a middle ware that would goof with the server.  Might that be an issue? 

  • RE: Populating @Variables dynamically

    Thank you Steve. 

    Sort of...  Basically, the variables are populated outside the stored procedure (seven possible strings are put into the @Variables).  Because this system has changed over time, they...

  • RE: Insert and Updates without Logging

    Thanks - I kinda wish I could delete my posting so I do not waste people's time when I figure out an approach. 

    Your URL is in German.  Do you know...

  • RE: Creating a 1:1 JOIN on a 1:M relationship

    Do you always want the "last" entry into the Customer Info table for that CustID?  (any dates or other data in the Customer Info table you could use?) 

  • RE: temporary table creation

    I asked about the blocking in another forum earlier today and was told that was a 6.5 version problem and has since been fixed. 

    Another issue to consider is the...

  • RE: Long running query when using sp_executeSQL

    I am shooting in the breeze here, but it looks like you are using Views and not actual tables.  Dynamic SQL cannot generate a plan in the SQL Server, that...

  • RE: conditions in IF statement did not get checked

    Sometimes it helps to be more explicit.  Try the following: 

    SELECT @zipcodeEXIST = (SELECT zipcode FROM invalidziplist WHERE zipcode = @zipcode)

    SELECT @weekInfo = (SELECT week FROM invalidziplist WHERE zipcode = @zipcode)

    You can also try:...

  • RE: Is it possible to audit failed Insert, Update and Delete statements?

    If you can, name your Transaction. 

    BEGIN TRANSACTION InsertTableName

     

Viewing 15 posts - 1,066 through 1,080 (of 1,085 total)