Forum Replies Created

Viewing 15 posts - 91 through 105 (of 629 total)

  • RE: AlwaysOn AG failover works if on same VLAN, fails from Other VLANs

    Michael Gerholdt (12/20/2016)


    Initially, AlwaysOn Availability group works from everywhere with clients of various sorts aimed at listener.

    Do a manual failover, and now only clients on the same VLAN as the...

  • RE: Fiscal Quarter

    Personally, I would always use a date dim for this type of thing. There are many scripts out there which should do most of the donkey work for you.

    Firstly,...

  • RE: Instance Stacking vs. VM Stacking

    Would you not be licensing cores, rather than VM's?

  • RE: Deny DML on a table

    Thom A (12/6/2016)


    krishnaroopa (12/6/2016)


    The user has membership in db_datareader, db_datawriter and db_owner roles

    There's your problem.

    db_owner's can do what every they want, whenever they want, in that database.

    Slight but IMHO important...

  • RE: AlwaysOn Availability Group Query database count

    Something like this?

    select

    ag.Name, AGReplica.replica_server_name, ag.Group_Id, agl.dns_name as 'ListenerName', COUNT(db.database_id) 'DatabaseCount'

    from

    master.sys.availability_groups ag

    left join

    master.sys.availability_group_listeners agl

    on ag.group_id = agl.group_id

    left outer join

    sys.dm_hadr_database_replica_states db

    on db.group_id =...

  • RE: What is Normal?

    Sergiy (11/28/2016)

    4. Vehicle registrations are not unique for a car.

    You may change your car registration any day, by purchasing a personalised plate.

    Not to mention - in many countries registration plates...

  • RE: Wow. Just Wow

    Beatrix Kiddo (11/21/2016)


    In the UK there has been quite a lot of resistance to implementing a centralised repository of all health records, and this kind of thing is exactly why....

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (11/17/2016)


    Grant Fritchey (11/16/2016)


    Announcements include:

    SP1 for 2016 (which also has CREATE OR ALTER).

    A single development surface. This means all functionality in Enterprise is also in Standard and Web (WHOOOP!).

    vNext...

  • RE: Index defragmentation

    Rather than roll your own, I would use one of these

    https://ola.hallengren.com/

    http://sqlfool.com/2010/04/index-defrag-script-v4-0/

    both are great, take your pick according to your needs

  • RE: Table Size Growing Over Time

    I'm afraid, as ever, it depends.

    If this is a staging table where you will be running a lot of transformations on the data, then the addition of an appropriate clustered...

  • RE: Table Size Growing Over Time

    Using TRUNCATE rather than DELETE will reset the identity

  • RE: Table Size Growing Over Time

    When you delete rows in a heap, it can't reallocate the space it had been using.

    One of the myriad ways heaps suck.

  • RE: Table Size Growing Over Time

    Is the table a heap?

  • RE: I can ODBC clearly now

    Phil Factor (11/5/2016)


    MUMPS? Good grief, that is an amazing survival. I wrestled that fiendish system in the eighties. It is true, though. If you curl up your nose at something...

  • RE: Who is that masked man anyway?

    Ed Wagner (10/22/2016)


    I'm a bit puzzled by the "if you really, really need to performance test" part. Who doesn't do performance tests before releasing something to production? It's...

Viewing 15 posts - 91 through 105 (of 629 total)