Forum Replies Created

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

  • RE: using more than 2 GB memory

    You probably made other configuration changes to your server that are more likely to impact throughput than just adding memory.

    What else changed? A new OS is fraught with peril...

  • RE: Testing SQL Server Security and Related Sites

    http://www.microsoft.com/misc/unsubscribe.htm

    They might be arrogant but at least they often admit to found holes. Subscribe to the Microsoft security newsletter and you'll be as informed as everyone else.

  • RE: Best Method to Upgrade NT4/7 --> W2K/2000

    quote:


    How do you get all DTS packages, maint. plans, jobs, and make sure that all security issues are migrated?


  • RE: When the DB grew.

    quote:


    don1941 can you tell me what those undocumented stored procs are.


    No, they're undocumented.

  • RE: UNICODE usage

    quote:


    http://dictionary.reference.com/search?q=byte


    So like I said: a byte's a byte.

    In C/C++ and other HLL, there is a...

  • RE: Any Opinions On Computed Columns & Performance

    Consider using indexed views on the tables if the data is relatively static. The server materializes a physical table with the values as columns. The computation is performed...

  • RE: /3gb

    My limited understanding is that the config switch merely enables the >2Gb memory on your server. I'm not sure that it really limits the OS to 1Gb or not.

    ...

  • RE: Best Method to Upgrade NT4/7 --> W2K/2000

    My experience is that a clean build is better than an upgrade. I upgraded from NT4 -> 2k -> XP and had some weirdness. After a reformat/reinstall, smooth...

  • RE: When the DB grew.

    There are some "undocumented" stored procs that let you format and print the transaction log. It would show the time of events like this. But, again, it's undocumented.

    ...

  • RE: Deleting Selective Rows from Table

    delete

    ...

    where code = 'a'

    or code='b'

    or code='c'

    works too.

  • RE: adding a sequence number to a view. (?)

    the "rowID" can be calculated with a subselect similar to:

    select RowID=(select count(*)

    from Table where xyz.Keys < Keys)

    from Table xyz

    For your 1000 rows, you will have an additional 1000 selects to...

  • RE: Strange Select problem

    I second the "no views in views" position. It's easy enough to break things with the broken things breaking other things too!

  • RE: Permissions question

    Like most open ended questions: It depends.

    As noted, farming out responsibility can be a good thing. It offloads the app design tasks to the folks who know the app. Your...

  • RE: "Windows Update" for Sql?

    If you don't already, I would subscribe the newsletters from Microsoft. I get 5-6 of them and they overlap quite abit. But better too many notices about...

  • RE: Too many dbo's?

    Like most open ended questions: It depends.

    As noted, farming out responsibility can be a good thing. It offloads the app design tasks to the folks who know the app....

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