Forum Replies Created

Viewing 15 posts - 8,011 through 8,025 (of 9,244 total)

  • RE: SSIS Access Denied, Windows Server 2008

    you normally need to set DCOM permissions, have you done this yet

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Permissions to 100+ tables

    to give permissions to all tables and views use the roles

    DB_Datareader

    DB_Datawriter

    or just create scripts to grant the permissions to the tables (remove un needed permissions as required)

    GRANT SELECT, INSERT, DELETE,...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Delete OR Truncate

    Truncate is generally more efiicient when clearing the whole table and unlike delete will reset any seed value as well!

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server Schemas

    Hey, no problem. Remember also, only use EXECUTE AS if you want to inherit permissions from another database user!

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server Schemas

    just use the following pattern

    GRANT permissions list ON OBJECT::storedprocname to databaserole

    valid SP permissions to grant are alter, control, execute, take ownership, view definition

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Cluster upgrade to SQL Server 2008 fails when SQL Server 2005 cluster nodes have different installed features

    gmamata7 (4/27/2010)


    Is this applicable to our case (having SSIS in Active node and NOT on Passive node)?

    please advice??

    according to the KB article, yes.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Cluster upgrade to SQL Server 2008 fails when SQL Server 2005 cluster nodes have different installed features

    as the link details the workaround is to un install the mismatched features

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: How to migrate a Reporting Service report from a UAT machine to a PRD machine

    i too, use the RSS tool. Easiest way to migrate

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: @@Servername

    has this server been renamed at some point?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Table Partitioning Question

    Check this link[/url]

    download and read the whitepaper

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Table Partitioning Question

    yes, it is.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Upgrade SQL 2000 To SQL 2008 x64 IA

    sqlguy-549681 (4/24/2010)


    you mean i will re-write 500 DTS again !!!!!!!!!!!!!!!!!!!!!!!!!!!!

    if they wont convert then yes!! Look at this way, your job should be safe for sometime 😉

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server 2008 - adding a node to a Win 2k8 cluster

    Guys, you get the message 'Current SKU is invalid' because of the licence key.

    When you get to the part of node 2 install where you see the licence key, delete...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Table Partitioning Question

    Table\index partitioning is exactly what it says. Within this there are 2 methods of partitioning

    Horizontal partitioning - rows are separated into partitions

    Vertical partitioning - columns are separated out into partitions

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Rebuild Index Job is failing

    if the database is in Simple recovery the log will truncate on checkpoint, also the alter index is minimally logged so this should not need log file modifications

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 8,011 through 8,025 (of 9,244 total)