Forum Replies Created

Viewing 15 posts - 886 through 900 (of 1,079 total)

  • RE: Finding Training

    It's sometimes difficult getting the Manager to pay for training....especially when based on a client site.

    Every individuals career lenght and training path is essentially linked to the duration of the...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: DateTime input with time always at 00:00:00.0000

    glad to be of some help.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    Try....

    Select * from dbo.DW_T_EC_JOB_TEMP t

    where

    t.EC_STEP_ID not in

    (select j.EC_STEP_ID from DW_T_EC_JOB j

    INNER JOIN DW_T_EC_JOB_TEMP t

    ON

    j.EC_STEP_ID = t.EC_STEP_ID)

    --instead of--

    --where (dbo.DW_T_EC_JOB.EC_STEP_ID = dbo.DW_T_EC_JOB_TEMP.EC_STEP_ID))

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: DateTime input with time always at 00:00:00.0000

    This is my attempt to assist you 😀

    DECLARE

    @int date,

    @idate datetime

    SET @int = (SELECT CONVERT(date,getdate()))

    SET @iDate = (SELECT CONVERT(datetime, @int))

    SELECT @int AS Initial_Conversion, @idate AS Result

    --or try CAST & convert

    SELECT...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Poor query performance post SQL 2008 upgrade

    Now that you are on 2k8, use the excellent** new Activity Monitor to see which processes are taking long AND why?

    check your SQL logs for any errors or infor messages...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Which procedure is the fastest?

    run it 5 times each, and see if there is really a one second difference...each time..

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Don't Look Ethel!

    Call me a bit too serious, but I wouldnt take my eyes off the screen if I were you.

    The mere fact that you "expect" something to fail, says a lot.

    Rather...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Optimal install in a vm environment with a SAN?

    Should SQL 2005/8 be run on server hardware only and VM''s avoided?

    I wouldnt say YES, or NO...but....

    Depends on youre host (let's say ESX) you will be sharing resources with other...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Is Database Running in SQL Server or SQL Server Express?

    NP, glad it helped.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: email failure notification

    How is SQL Server involved?

    I'm also a bit confused Paul, just took a shot and hoped he meant, SQL notifications, to an outlook/exhange mailbox.

    If not: this question doesnt make...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: email failure notification

    I dont specifically for success/failure, but a log is kept.

    There is a History tab on each Operator in SSMS 2005, which indicates most recent notification attempts.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Is Database Running in SQL Server or SQL Server Express?

    select @@version

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Date format no matter the server settings

    youre first post

    So I need to convert the varchar text/string date of 03/13/2010 into a date dd/MM/yyyy (with out the 00:00:00)

    youre second post

    So how can i get this...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Date format no matter the server settings

    My first question is: Why are you using date as string/varchar?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: How to know the length of data stroed in table column?

    SELECT LEN('HOW LONG IS THIS DATA?')

    RESULT = 22...

    what you looking for?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

Viewing 15 posts - 886 through 900 (of 1,079 total)