Forum Replies Created

Viewing 15 posts - 151 through 165 (of 628 total)

  • RE: JOIN WITH IN AND LIKE

    SELECT a.NAME,d.[Type],t.[Out_Type] FROM A a

    INNER JOIN D d

    ON a.Name=d.Name

    INNER JOIN [TYPE]t

    ON d.[Type] IN ( SELECT t.[Out_Type]FROM [Type])

    In you Query How does the Type table join to Table A....

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Complete Incompleteness

    I had one not that long ago where I clicked run and waited and waited and waited. nothing happened no color change no error no nothing. I thought...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Specific query (in query?)

    I guess I am not following what you mean by "payment before date" What fields would be involved in that?

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: sp_executesql issue

    Sorry wasn't paying that close attention. It is Friday and all. My Bad.

    Have you tried running the Query against the DB directly with out the variables and...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: sp_executesql issue

    missing a comma in your orderby cluase assuming the variables translate out to be column names.

    ORDER BY @SFIELD, @SFIELD_TYPE

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Date query

    Sorry you want something like

    EffectiveDate > Getdate()-1

    this would effectivly give you everything for today.

    Remember that get date would translate into the exact date and time. So lets say...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Date query

    If you use GetDate() in place of the hard coded date you will get anything for today.

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Conversion from DTS to SSIS 2005/2008

    I would not think you need to learn DTS per say but you should try opening a few and get familiar with them. A basic understanding should be enough....

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Compatabilty of BIDS between versions

    pavan_srirangam (4/14/2011)


    As far as I concern,

    If you are creating a package any way you define a connection to the actual server. so it deosn't

    matter I guess.

    all new...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Compatabilty of BIDS between versions

    WE have both BIDS installed as we have a similiar situation as you. While we have been able to publich reports from VS 2005 to 2008 it is not...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Server 2000 to 2008 R2 upgrade question

    I know to upgrade to 2005 the SP level for 2000 had to be SP4 or you could not select the instance for upgrade. I would assume the same...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Report for daily count for particular time

    picky picky. LOL :hehe:

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Report for daily count for particular time

    Add this to your where clause and this should take care of it.

    AND DATEPART(hh,C.ROWUPDATE)=>20 AND DATEPART(hh,C.ROWUPDATE)=<6

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Can't query remote database from SSMS

    Try to connect to the linked server using the same user and pass.

    the first part would run successfully even if you put in a user that did not...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Stored procedure execution faster in develop thant production ...

    I would look at what the hardware differences are between the two boxes. I would also look at the level of activity between Prod and Test. You mention...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

Viewing 15 posts - 151 through 165 (of 628 total)