Forum Replies Created

Viewing 15 posts - 301 through 315 (of 496 total)

  • RE: OK This is a weird one

    I am still perplexed by this one. For clarity, here's a rundown of the situation.

    This select against the staging table returns one row.

    select * from WorkDB.dbo.ContractItems_Staging cc ...

  • RE: System.OutofMemoryException Error

    By "client" I did mean client app, so I was saying the same thing about SSMS. Why do you need 16 million plus rows to appear on your client?...

  • RE: System.OutofMemoryException Error

    Sounds like a client issue -- like your client doesn't have enough memory to handle the result set that is returned from the server.

  • RE: List all users on SQL instance and their privilages

    Something like this executed against that DB:

    select * from sys.database_permissions d inner join sys.database_principals p

    on grantee_principal_id = principal_id

    inner join sys.objects o on major_id = object_id

    order by p.name, o.name

  • RE: Excel openrowset works on 32 bit but not 64 bit?!?!

    Ah, yes, the old Jet issue. Not only did I have to use SSIS, I had to run it at the command prompt using the 32 bit version of...

  • RE: The DBA Financial Analyst

    david_wendelken (8/25/2010)


    jeff.mason (8/25/2010)


    Steve Jones - Editor (8/25/2010)


    I definitely like the idea of a cloud like Polyserve. That seemed like a great technology.

    Only major issue we've seen is SharePoint -- Polyserve...

  • RE: The DBA Financial Analyst

    Steve Jones - Editor (8/25/2010)


    I definitely like the idea of a cloud like Polyserve. That seemed like a great technology.

    Is is SO much easier to support than MS clustering. ...

  • RE: Several named instances on a SQL Std Ed. Cluster

    And yes, you can Active/Active as you describe with multiple nodes on one cluster unit. Just be sure to scope out the hardware/configure SQL settings so you can function...

  • RE: 2008 Enterprise vs 2008 Standard

    Perry Whittle (8/24/2010)


    partitioning, transparent data encryption, data\backup compression, indexed views,online restores, .......etc

    Depends on features you are going to need. Chances are if you have managed with 2005 Std so far...

  • RE: To view Trans Log files of a DB

    If you are willing to spend some serious money, you can buy a log reader that can do what you are asking for -- but you need a knowledgable DBA...

  • RE: The DBA Financial Analyst

    Our company's concept of "cloud" is that you have a large set of servers clustered by Polyserve that have many instances of SQL, and when an app needs a database,...

  • RE: Why Developers Make Mistakes when working with Database Tech

    Do you have a link to the article so we can put the statement into context?

  • RE: Transaction Log backup error

    Depends upon the size of the DB and how critical the recovery of data loss is. For small to medium systems, my rule of thumb is nightly full and...

  • RE: Connections to sql server 2008

    Hate to sound snarky, but yeah, the better way of dealing with it is to license per processor if you are using a web app. Best practices specifically recommend...

  • RE: Using the Kill command in a VB app

    KILL should only be done manually by a trained DBA on a production environment. Period. A user app should NOT be able to kill processes. Too unpredictable...

Viewing 15 posts - 301 through 315 (of 496 total)