Forum Replies Created

Viewing 15 posts - 16 through 30 (of 1,157 total)

  • RE: Does anyone care that I passed 70-461?

    I have to agree with a lot of whats already been said. On their own these low level certificates are not going to get you a job as a...

  • RE: mdf file growth - no inserts

    Page splits in your indexes?

    As there is no increase in rows, is it possible some are being update or replaced?

  • RE: SQL 2012 replicaiton question

    Yes, you can use replication to "double hop" articles. This will add some additional complexities when modifying the topology but nothing too complicated.

    Update-able subscriptions don't fully support this. ...

  • RE: 98% Memory usage SQL Server 2008 R2

    phil.wong (4/3/2014)


    Returning in the AM to review one server is under the set max but one server is sitting back above 14.5 GB of memory used.

    Like I said...

  • RE: 98% Memory usage SQL Server 2008 R2

    humbleDBA (4/3/2014)


    Think it worth sayingthat, as you haven't mentioned what SQL version you are using there are some caveats with Lock Pages in Memory (LPM).

    First, if you're running SQL 2008...

  • RE: 98% Memory usage SQL Server 2008 R2

    phil.wong (4/2/2014)


    Been monitoring SQL server 2008 for a bit now and seems the memory usages sits between 95-95% memory usage. After reading multiple forums and recommendations from various sources,...

  • RE: Transaction Replication Sync Problem

    Angelo SIlva (3/28/2014)


    I know that. I am not checking with that query. I am checking for all records with a query that I create yesterday for the same table.

    The thing...

  • RE: Transaction Replication Sync Problem

    Just a point note, the above query only shows errors in the last 5 minutes. You have to change it to check for one outside that period.

    If you find...

  • RE: Transaction Replication Sync Problem

    Angelo SIlva (3/27/2014)


    Hello All,

    The data is inserted in our Database db 1 in Table1 and replicates the data to the customer database db2 in table1 then the customer database db2...

  • RE: Mixed SQL Versions in Transactional Replication

    free_mascot (3/25/2014)


    Again standby mode in Log shipping will not allow users to use database and max you can have read_only database that too SQL removes the connection while applying the...

  • RE: SP Recompile

    MysteryJimbo (3/24/2014)


    GilaMonster (3/24/2014)


    MysteryJimbo (3/24/2014)


    You can use something like this and check the usage count, it will reset if recompiled.

    It'll reset if the plan is removed from cache and compiled again...

  • RE: SP Recompile

    GilaMonster (3/24/2014)


    MysteryJimbo (3/24/2014)


    You can use something like this and check the usage count, it will reset if recompiled.

    It'll reset if the plan is removed from cache and compiled again from...

  • RE: Ambiguous column name

    webrunner (3/21/2014)


    GilaMonster (3/21/2014)


    This is the problematic query taken to basics:

    SELECT col1, col1 FROM SomeTable ORDER BY col1

    It's the order by, it doesn't know which col1 to sort by. Wasn't caught...

  • RE: SP Recompile

    You can use something like this and check the usage count, it will reset if recompiled. I forget but there may be another dmv with the compile time

    SELECT usecounts

    ,object_name(qp.objectid)

    ,...

  • RE: update 2 servers at the same time?

    No examples of this

    The principle is you have identical stored procedures on Server 1 and Server 2.

    A linked server on Server 1 pointing at Server 2.

    You then use 4 part...

Viewing 15 posts - 16 through 30 (of 1,157 total)