Forum Replies Created

Viewing 15 posts - 2,191 through 2,205 (of 6,041 total)

  • RE: Coming Attacks

    jasona.work (10/3/2016)


    ...

    Which, really, comes around to "why in the H*LL does my refrigerator need to be on the internet in the first place?" So I can remotely check my...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Tools/Apps for SQL Server on iPhone?

    One option is to use VPN/RDP to access your PC or server from where you can use SSMS or SQLCMD.

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Difference between MySQL and Oracle? What's better?

    I'm only somewhat acquainted with Oracle, enough to form an opinion without forming an attachment. In my opinion, Oracle has a lot of "junk in it's trunk" dating back to...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Coming Attacks

    robert.sterbal 56890 (10/3/2016)


    Its a balance of risks. Private VPNs were very expensive and I would bet more likely to fail than the public network.

    Additionally the risks on a private network...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Get the salary based on empno and month

    GA_SQL (10/3/2016)


    But for each month i have 30 employees, how to maintain that in a single table

    First I'd just like to mention that vertically partitioning across multiple tables, when there...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Coming Attacks

    The Internet is a wonderful, collaborative resource, and will be for a long time if the criminals don't fundamentally ruin our trust in it.

    Also, put this all into the...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Deadlock on a "queued DELETE"

    Everything you need to know is here:

    Deadlocking

    https://technet.microsoft.com/en-us/library/ms177433(v=sql.105).aspx

    Detecting and Ending Deadlocks

    https://technet.microsoft.com/en-us/library/ms178104(v=sql.105).aspx

    Handling Deadlocks

    https://technet.microsoft.com/en-us/library/ms177453(v=sql.105).aspx

    Minimizing Deadlocks

    https://technet.microsoft.com/en-us/library/ms191242(v=sql.105).aspx

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Deadlock on a "queued DELETE"

    Lynn Pettis (9/28/2016)


    Pingala (9/28/2016)


    Thanks. We implemented the RETRY to avoid deadlock. However, I am surprised how a queued DELETE got a deadlock in the first place if SQL Server does...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: GRANT User Permissions to Create, Drop Alter all Objects is a schema

    Welsh Corgi (9/29/2016)


    Eric M Russell (9/29/2016)


    GilaMonster (9/29/2016)


    Phil Parkin (9/28/2016)


    See link.

    And, after you're read that, tell me whether 'CREATE PROCEDURE', 'ALTER PROCEDURE', 'DROP TABLE', etc are valid permissions to be granted...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Don't tell the boss

    Grant Fritchey (9/26/2016)


    Thanks everyone for the feedback. I was hoping someone would come in and argue in favor of hiding information since it sometimes seems to be considered a valid...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: GRANT User Permissions to Create, Drop Alter all Objects is a schema

    GilaMonster (9/29/2016)


    Phil Parkin (9/28/2016)


    See link.

    And, after you're read that, tell me whether 'CREATE PROCEDURE', 'ALTER PROCEDURE', 'DROP TABLE', etc are valid permissions to be granted on a schema.

    I assume the...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Can you become a BI professional without any Front End Development Skills?

    patrick.w.wheeler (9/28/2016)


    Script task use in SSIS is one area that you can leverage development language.

    You don't always need to use C# scripting tasks, especially not for reporting tools. About the...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Backup database only if changes happen

    ScottPletcher (9/28/2016)


    You'd still need to keep at least the history from the previous check, because an index/table could be dropped, which would remove it from the system views.

    Aggregating object level...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: GRANT User Permissions to Create, Drop Alter all Objects is a schema

    Reading the following article, it sounds like in addition to granting user as owner of the schema, you must also grant them permission to perform specific operations like creating tables....

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Backup database only if changes happen

    -- return the last update date for each database:

    select db_name( database_id ) as database_name

    , max(coalesce(last_user_update, last_system_update)) as last_updated

    from sys.dm_db_index_usage_stats

    group by database_id;

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

Viewing 15 posts - 2,191 through 2,205 (of 6,041 total)