Forum Replies Created

Viewing 15 posts - 5,101 through 5,115 (of 5,685 total)

  • RE: launch SSIS pacakage from web service

    [SecurityException: That assembly does not allow partially trusted callers.]

    Double-hop security issue, I think. Not sure how to work around that for SSIS though. Either that or are you...

  • RE: Swarms

    I'm not sure I get the new concept of 'swarm'. Nope, not at all. Most of my experience with swarming is me trying to fix some issue with...

  • RE: Query with Performance Issues

    TJonsek,

    It's not a lack of interest, but time, that's probably got a lot of people delaying on getting involved in this thread. There's a lot of information in your...

  • RE: Stored Procedure Takes long time on one Server, but quick on another

    These are estimates, not actuals, but it still gives us some idea of what's going on. The actuals are more useful, however.

    In the massive statement (SELECT DISTINCT, 5th statement,...

  • RE: Query

    VGish,

    Help me out here. I didn't dig through your code, sorry, but from the first entry you're looking for your data to be gap filled? How do you...

  • RE: 2 SELECT statements from one CTE

    CirquedeSQLeil (11/2/2010)


    Do you use websense at work?

    I know I do, and it occassionally screws up for me too. They're related, I take it?

  • RE: Stored Procedure Takes long time on one Server, but quick on another

    mymail.default (11/2/2010)


    Thanks Craig.

    The processer is a quad core with 16g ram.

    I found the CPU for this stmt in question is 377678

    Which means nothing out of context, other than it's not...

  • RE: Week Part

    Figured it out again (I think):

    DECLARE @beginYear DATETIME

    SET @beginYear = DATEADD (yy, YEAR(getdate()) - 1900 , 0)

    PRINT dateadd( dd, (DATEPART( wk, getdate()) - 1) * 7 - datepart(dw, @beginYear)...

  • RE: Advantage of Stored Procedure?

    Numerous.

    Stored Cache in engine.

    Security allowed execute only on proc and no direct data access.

    Multiple call reusability.

    (Depending on tasks) Can do multi-step processes that a view cannot.

    Helps to protect against SQL...

  • RE: Week Part

    Well, there's

    DATEPART( mm, @date) which will give you the month.

    DATEPART( ww, @date) which will give you the week # in the year.

    You'll use those for sorting.

    For display, you can then:

    DATENAME(...

  • RE: Are the posted questions getting worse?

    Roy Ernest (11/2/2010)


    Thank You. I saw some sunlight about 5 minutes back. So that is a good sign. 🙂 After 24 hrs.. 🙂

    Must have been one wild ride. Glad...

  • RE: Using output of a Stored Procedure in an UPDATE statement

    Nope. I have only used the return value, or selected the results of the exec into a temp table and then used whatever I needed from the #tmp.

  • RE: Life Without a Net

    Gift Peddie (11/2/2010)


    The net is the great equalizer it is the reason very few code sets impress me because most are modified Microsoft or now Oracle code. I have...

  • RE: PARSING a Concatenated string into columns

    Figured out the problem. It's because the 'tabs' are converted to spaces when I copy/paste the code in. Seeing if it works from plain encoding. Yes, plain...

  • RE: help needed with datetimes

    naidu4u (11/2/2010)


    I am unable to structure the code, I mean its becoming really difficult to insert the row column in this tmp table...(by using views since I can really insert...

Viewing 15 posts - 5,101 through 5,115 (of 5,685 total)