Forum Replies Created

Viewing 15 posts - 24,541 through 24,555 (of 26,490 total)

  • RE: GROUP BY

    Start with this:

    select

    rightt.*,

    leftt.*

    FROM

    #temp2 leftt

    left outer join #temp1 rightt

    ...

  • RE: about converting datetime without time part

    based on this:

    (CONVERT(nvarchar, FireBrigade_ShiftFallows.ActualStartDate, 102) = CONVERT(nvarchar, @date,102))

    I'd do this:

    FireBrigade_ShiftFallows.ActualStartDate >= dateadd(dd, datediff(dd, 0, @date), 0) and

    FireBrigade_ShiftFallows.ActualStartDate < dateadd(dd, datediff(dd, 0, @date) + 1, 0)

    😎

  • RE: JOIN

    We had a similiar, yet different, problem between two PeopleSoft production servers. We had to configure DTC on both servers to fix the problem even though the data transfer...

  • RE: JOIN

    Just to be sure, did you modify the DTC settings on both servers?

    😎

  • RE: JOIN

    Not that familiar with the behind the scenes processing. I just seem to remember seeing something similiar to this before and this was the suggestion given. Can't hurt...

  • RE: SSIS

    To get you started, you'll want to use a ForEach container and the FileSystem task. Exactly how you would use them, I don't know off the top of my...

  • RE: JOIN

    Looking at BOL, it looks like you use just like a table.

    I would still load the data into a temp table before doing the join.

    😎

  • RE: JOIN

    Take a read of BOL. I think I have seen this before, and you may need to use OPENROWSET.

    😎

  • RE: JOIN

    No. He asking if you can add the table you want to join into the stored proc and join it to the other tables there.

    😎

  • RE: JOIN

    You need to populate a temp table with the results from the stored proc and then join to the temp table. Unfortunately SQL Server does not let you treat...

  • RE: Group by as part of a where clause?

    I'd need a little more specifics. The table DDL, smaple data (in the form of insert statements that can be cut, pasted, and executed to populate the table), and...

  • RE: Best file compression software?

    I'll agree, you have a process that is working, you don't need to change it unless your requirements change.

    One of the things I sometimes needed to do was restore a...

  • RE: Does this look like a SQL injection attack?

    That sounds like a good script for the script library.

    😎

  • RE: Best file compression software?

    I was manually zipping backup files using PKZip. and it did a great job. Problem was: 1) it was manual, and 2) it was time intensive.

    Using HyperBac cut backup...

Viewing 15 posts - 24,541 through 24,555 (of 26,490 total)