Viewing 15 posts - 6,331 through 6,345 (of 7,636 total)
JALB (7/11/2008)
July 11, 2008 at 11:09 am
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...
July 11, 2008 at 11:02 am
You have this check for your re-used conversation handle being either NULL, non-existent or bad state:
IF @dlgId IS NOT NULL
...
July 11, 2008 at 10:17 am
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?
😀
July 11, 2008 at 6:25 am
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...
July 11, 2008 at 6:10 am
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:
...
July 11, 2008 at 5:49 am
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.
July 11, 2008 at 5:27 am
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...
July 11, 2008 at 5:16 am
Denis (4/13/2007)
BEGIN TRAN trialEXEC sp_executesql @sqlstring
ROLLBACK TRAN trial
I would not recommend this. As a previous post noted: this is extremely dangerous. There are...
July 10, 2008 at 10:24 pm
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...
July 10, 2008 at 10:09 pm
Service Broker tip: make sure your procedures are ending their conversations (both sides)!
July 10, 2008 at 9:56 pm
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.
July 10, 2008 at 9:31 pm
I think this is simpler and more efficient:
ALTER PROCEDURE [dbo].[ProductType_ValidateStartDate](
@ProductTypeID INT,
...
July 10, 2008 at 9:20 pm
Viewing 15 posts - 6,331 through 6,345 (of 7,636 total)