Viewing 15 posts - 211 through 225 (of 443 total)
Hugo Kornelis (4/19/2010)
Tough question. We can't really look in the minds of the developers who originally wrote the feature, so we can only speculate.
Very true
And frankly, I see little reason...
April 20, 2010 at 1:59 am
Hugo,
Thanks for the input.
Which would you say is correct, the implementation as it stands or BOL?
April 19, 2010 at 9:12 am
Anyone care to lend their opinion to a discussion prompted by todays QOD here, please?
April 19, 2010 at 7:01 am
da-zero (4/19/2010)
SCOPE_IDENTITY returns the value of the last identity value inserted in the same scope. Since the scope is the whole batch, it doesn't matter if the...
April 19, 2010 at 6:57 am
da-zero (4/19/2010)
nigel. (4/19/2010)
In the example, since there are no GO statements to define batch boundaries, aren't all the statements in the same batch?
They are yes, but I'm not sure how...
April 19, 2010 at 6:06 am
da-zero (4/19/2010)
nigel. (4/19/2010)
Andrew Watson-478275 (4/19/2010)
DECLARE @sid int
DECLARE @table Table (KeyID int primary key,KeyData varchar(5))
DECLARE @idtable Table (KeyID int identity primary key,KeyData varchar(5))
INSERT...
April 19, 2010 at 5:04 am
Andrew Watson-478275 (4/19/2010)
DECLARE @sid int
DECLARE @table Table (KeyID int primary key,KeyData varchar(5))
DECLARE @idtable Table (KeyID int identity primary key,KeyData varchar(5))
INSERT INTO @idtable...
April 19, 2010 at 4:15 am
There are several ways you could do this, none of which involve generating the error reports in advance.
Two possibilities are either use either a report (SSRS) or ASP.net page that...
April 15, 2010 at 8:07 am
mtaylor7210 63514 (4/13/2010)
True but anytime you are taking parameters you open yourself up to injection.
No, I believe you are mistaken.
Please explain why you think using parameterized stored procedures opens you...
April 14, 2010 at 4:19 am
You shouldn't need to do anything as complicated as splitting/dividing your date field, as long as it is of the datetime data type.
A simple delete staement like the following...
March 15, 2010 at 4:29 am
Thanks Paul,
They could come in really handy. Oh, if only I had 2008, 😀 and the time to play.
I'd not even noticed this was in a 2008 forum :blush:
March 11, 2010 at 8:46 am
tabishghazi (3/10/2010)
can you plz explain cross join
Try this: CROSS JOIN
March 11, 2010 at 5:24 am
Very good question.
However I think that the explanation is a bit lacking, and could explain in more detail what is happening here and what a 'cross join'/'cartesian product' is.
Here...
March 11, 2010 at 3:43 am
Viewing 15 posts - 211 through 225 (of 443 total)