Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 2,647 total)

  • RE: Database Connection Latency

    jpbbabin (3/21/2012)


    The application is installed in the client PC. There is a specific connection file provided/configured by this app to connect with the database.. I can connect to the...

    Jared
    CE - Microsoft

  • RE: Database Connection Latency

    Let's backtrack a bit... What is the ping time between the application server and the database server from command prompt?

    Jared
    CE - Microsoft

  • RE: which is faster? SSIS or SQL?

    Charmer (3/21/2012)


    Hi friends,

    i try to run some T-SQL statements in ssms like insert and update left outer join with 5 tables...due to large records it takes too much time..

    so if...

    Jared
    CE - Microsoft

  • RE: too many exec sp_reset_connection

    How do you know it is "too many?" What exactly are you basing that on?

    Jared
    CE - Microsoft

  • RE: Deleting a horizontal Partition in SQL Server 2008

    capn.hector (3/21/2012)


    in a partitioned table? i would delete the data you dont need then drop the partition from the table definition then delete the file.

    Umm... No. In a partitioned...

    Jared
    CE - Microsoft

  • RE: When to partition?

    I always say you need to ask yourself the following question: "What do I gain by partitioning?"

    In our case, it helps with our backup strategy and querying. We partition by...

    Jared
    CE - Microsoft

  • RE: How to run multiple SELECT Statements?

    To build on what others are saying:

    UNION or UNION ALL will combine 2 or more result sets vertically; essentially "stacking" them on top of each other. The # of...

    Jared
    CE - Microsoft

  • RE: Triangle Join - Can I do it right or a replacement?

    Jeff Moden (3/21/2012)


    sorry... haven't abandoned you. Had to get some sleep because I had to be to work very early to swap some drives on a Dev Box. ...

    Jared
    CE - Microsoft

  • RE: How to diagnose deadlocking in production environment

    I would start by looking at the winner of the deadlock and the losers. When both are run a the same time, what would be causing the deadlock? Can...

    Jared
    CE - Microsoft

  • RE: Problem patching to 2008 SP3

    Kenneth.Fisher (3/20/2012)


    Shaurabh Thapa (3/19/2012)


    The problem seems to be with sql 2008 setup support files. Just un-install setup support file and run the setup again.

    What does setupbootstrap logs says ?

    Setupbootstrap logs...

    Jared
    CE - Microsoft

  • RE: SQ xtype

    I'm not sure what you are looking for exactly, or why. However, I don't believe there is a place to simply generate a script for the queue object in...

    Jared
    CE - Microsoft

  • RE: Triangle Join - Can I do it right or a replacement?

    ColdCoffee (3/20/2012)


    I dont see a triangular join here. Its pretty straight forward join. Or maybe im overlooking something here :blink:

    Triangular join because the join condition is >=

    Jared
    CE - Microsoft

  • RE: Triangle Join - Can I do it right or a replacement?

    Why not put your derived table into a CTE as well? Or a temp table? It doesn't address the triangluar join yet, but that's the first thing I noticed. ...

    Jared
    CE - Microsoft

  • RE: Select unique records to insert

    The GROUP BY technique advised before should work as expected for you. Did you try it?

    You could include all columns in the grouping set if needed.

    Why would you use both...

    Jared
    CE - Microsoft

  • RE: Select unique records to insert

    adonetok (3/20/2012)


    How to use DDL and DML?

    Please look at the article in my signature by Jeff Moden.

    Jared
    CE - Microsoft

Viewing 15 posts - 1,351 through 1,365 (of 2,647 total)