Forum Replies Created

Viewing 15 posts - 7,051 through 7,065 (of 7,429 total)

  • RE: can we use do it without cursor?(may be join)

    Try this

    UPDATE cd

    SET TotalPaidIn = TotalPaidIn + cp.TotRec, BalanceOnHand = BalanceOnHand + cp.TotRec

    FROM casedata cd

    INNER JOIN

    (SELECT CaseNumber, SUM(ReceiptAmount) AS TotRec

    FROM currentpostings

    WHERE batchId = @batchId

    GROUP BY CaseNumber) AS cp

    ON...

  • RE: Lock Timeout

    Deffinently stick with the default as is. Only adjust in the queries themselves if you find a need to.

    "Don't roll your eyes at me. I will tape them in place."...

  • RE: TSM

    Yeah, I do sql backups to tape and local files with copies on serveral servers plus I have a replication of our high need database in a different state. If...

  • RE: Problems scheduling DTS

    From this 'NT AUTHORITY\ANONYMOUS LOGON' I can tell you used NT Authenication to connect to the other box when you built. The problem is SQLAgent does not have a domain...

  • RE: DTS Limits

    Haven't got a file that large to test but have you tried setting up a table with a text datatype field and import to it?

    "Don't roll your eyes at me....

  • RE: apostrophe problem in SQL statement

    Sorry, I meant one single quotes (') must be submitted as two singles ('') not a double.

    "Don't roll your eyes at me. I will tape them in place." (Teacher...

  • RE: apostrophe problem in SQL statement

    Submit as "Mary''s book", in your app just do a replace ' for '' before submitting.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston...

  • RE: sql server and arabic langage?

    My son loves to roll his eyes when I am talking to him and he is sort of avoiding my words (got it from his mom for sure). I heard...

  • RE: Lock Timeout

    I agree with Andy 30 seconds should be sufficient but keep in mind this affects how long the current query and if a really long query is already running you...

  • RE: Server Role to Execute SP's?

    You could also create the rol in the model database that way when you create a new database it will already be there, then you just have to assign permissions...

  • RE: SQL 7.0 Post SP3 Security Patch Install Problems

    Glad to hear.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: MS DOS char set

    Sorry, terminal is not a supported font in web so you will not be able to. I also don't know of anything similar that you could provide.

    "Don't roll your eyes...

  • RE: Overhead of SQL instances?

    All depends on the amount of data, the number of read/writes average, network throughput and mostly the physical configuration of the server. But as far as instances you actually are...

  • RE: Nerds in Season

    Absolutely loved it. Top notch.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: sql server and arabic langage?

    Yes. However I think we forgot you have to setup the server with the proper code page see BOL

    Collation Settings in Setup

    Use the Collation Settings screen to modify default collation...

Viewing 15 posts - 7,051 through 7,065 (of 7,429 total)