Forum Replies Created

Viewing 15 posts - 6,991 through 7,005 (of 7,429 total)

  • RE: exam 70-229

    Most of the study sites center around dumps of the questions and really this is not teaching you anything other than what the test has on it. The problem with...

  • RE: DTS Package execution

    I have run DTS packages simultaneous before and have seeen no issues, however the datasource was not changed so I cannot be sure what the side effect is, I believe...

  • RE: Distributed Query in Trigger

    Ok found this out, for some providers you have to have Distributed Transaction Coordinator running. When I turned it on I got the error for an Access database that Jet...

  • RE: Distributed Query in Trigger

    Tested and I always get an ODBC error, may just not be allowed under those circumstances, I will look for details and post if I find.

    "Don't roll your eyes at...

  • RE: Bread Crumb SELECT ? Is It Possible

    Or try this, already put in stored procedure format:

    CREATE PROCEDURE ip_GetMenuHier

    @t_Menu_pk int --The bottom of the hierarchy.

    AS

    /* Create a local temp table to store our output until ready. */

    CREATE...

  • RE: How do you combind these 2 SQL Statements?

    Try this, this joing the two together to perform one select, barring any misunderstandings I have about your data this should work or at least give you some idea how...

  • RE: Move DTS packages to another server

    Hey Andy, I would appreciate that code too if you'll write it.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Questions about Alias and ISNULL

    I saw the movie, isn't the line

    Loke, I am your..........MOTHER. (Thumbs Wars, much better than the original)

    "Don't roll your eyes at me. I will tape them in place." (Teacher...

  • RE: Selection on today's date

    Actually I would go this route with SQL

    WHERE CONVERT(VARCHAR,mydate,101) = CONVERT(VARCHAR,GETDATE(),101)

    This has IMHO less overhead on the CPU in comparing since both sides are converted and compared in the following...

  • RE: Index Tuning

    You know I always thought that as well, but if you look at a composite index under Show Execution Plan when quering for say State even if it is column...

  • RE: Index Tuning

    quote:


    so if more quiries use City then City, State or if more use State then State,City


  • RE: Index Tuning

    Sorry, can I ask where you came across this. I have read in serveral places nothing like this only that when creating a composite index you should make the first...

  • RE: UPDATE TRIGGER

    Make sure you are seperating your logic for the fields to insure your not just firing on any update if you are checking each. Also make sure you tie to...

  • RE: One instance

    Ok first try this and then I will get more complicated it does not meet your needs. DISTINCT is for all columns in your select statement so if you reference...

  • RE: Read Ahead Slots

    Take a look here at the following MS KB Article http://support.microsoft.com/default.aspx?scid=kb;en-us;Q248764 this should be your answer. If not let us know.

    "Don't roll your eyes at me. I will tape them...

Viewing 15 posts - 6,991 through 7,005 (of 7,429 total)