Forum Replies Created

Viewing 15 posts - 6,331 through 6,345 (of 7,636 total)

  • RE: Column defined permission

    JALB (7/11/2008)


    Transferring to another school means, the program copies all student related tables that pertain to one student with one click of a button from one school to another. Demographics...

  • RE: Nested JOINS confusion

    OUTER JOIN WHERE conditions acting like INNER JOIN..ON condiitons is documented and intended behavior, per the ANSI SQL standard. In fact, having the option to use both "inner" and...

  • RE: Service Broker - Messaging

    You have this check for your re-used conversation handle being either NULL, non-existent or bad state:

    IF @dlgId IS NOT NULL

    ...

  • RE: Service Broker - Messaging

    Please show us your Sending code.

  • RE: Nested JOINS confusion

    Grant Fritchey (7/10/2008)


    There's an "Anti-Rbar Alliance"?

    How do you join? ...

    Uhhhm, .. do you want it in SQL-92 syntax or SQL-89 syntax?

    😀

  • RE: How would T-SQL interpret this coding error?

    Himm, it only happens on assignments:

    declare @sqlfilter varchar(33)

    select @SqlFilter = 'a' + 'd' + + 'b'

    Acts like the extra "+" is not there.

    But

    select 'a' + 'd' + + 'b'

    Gives...

  • RE: Parsing T-SQL

    karthikeyan (7/11/2008)


    There are lots of things that Rollback cannot undo.

    can you tell me what are all those ?

    No. I can give you some examples though:

    ...

  • RE: Validate Date

    Thanks for the feedback.

  • RE: Get rid of cursors

    Missing: sample data for the tables (in the form of INSERT statements that can be cut, paste, and run in SSMS to load the tables).

    still not seeing it.

  • RE: Complex Case statement

    The way to sort out in your mind how CASE works VS. how IF works is this:

    IF is a flow-control statement

    however

    CASE is a function.

    Yes, it does not...

  • RE: Parsing T-SQL

    Denis (4/13/2007)


    BEGIN TRAN trial

    EXEC sp_executesql @sqlstring

    ROLLBACK TRAN trial

    I would not recommend this. As a previous post noted: this is extremely dangerous. There are...

  • RE: Help with UNION and null or empty string values

    Union combines multiple result sets into one result set. It does not combine multiple records into single records.

    There are other methods to combine multiple records into single records, the...

  • RE: Queue/MSDB has grown massive

    Service Broker tip: make sure your procedures are ending their conversations (both sides)!

  • RE: Invoice / Statement process Implementation

    Though I've never done it myself, I seem to recall reading that Notification Services was created specifically to do this sort of thing with Reporting Services.

  • RE: Validate Date

    I think this is simpler and more efficient:

    ALTER PROCEDURE [dbo].[ProductType_ValidateStartDate](

    @ProductTypeID INT,

    ...

Viewing 15 posts - 6,331 through 6,345 (of 7,636 total)