Viewing 15 posts - 106 through 120 (of 2,469 total)
Is this what you're looking for ?!?! (run against Pubs database)...
create procedure testProc @au_id varchar(15) = NULL as if @au_id is NULL select * from dbo.authors else select * from dbo.authors where au_id =...
December 6, 2006 at 7:21 pm
Maybe you could make a copy of the table - except this time define the column with the default collation and then try to copy the values into this to...
December 6, 2006 at 5:13 pm
Yes - you don't know that you've been reported missing...but if there's one thing that family could've been (almost) sure of it's just that one fact - that friends and...
December 6, 2006 at 4:55 pm
So that's the end to this story - it seemed like a miracle when the mother and kids were found alive and in good condition - somehow...
December 6, 2006 at 2:55 pm
Sorry - My example really should've been:
if 'test' = 'test '
print 'the same'
else
print 'not the same'
December 6, 2006 at 11:08 am
Last post I promise....
I set the compatibility level to 60 - "messed around" some and then forgot to reset it back to 80...
I went...
December 6, 2006 at 10:55 am
From BOL....
"...setting the compatibility level of a database to 65 makes the database version-6.5 compatible, but does not necessarily provide version 6.5 behaviors. For example, when SET ANSI_PADDING is ON...
December 6, 2006 at 10:45 am
So I set the compatibility level to 60, then 65, 70 and 80....when I ran the following script against each setting I got the exact same results....
December 6, 2006 at 10:39 am
Select 'Not the same'
Where datalength('test') <> datalength('test ')
Select 'The Same'
Where len('test') = len('test ')
December 6, 2006 at 10:14 am
hmm...and here's another test where they're treated the same too...maybe michelle should use datalength..
create table #Spaces(col1 varchar(5), col2 varchar(5))
go
insert into #Spaces values(' ', '')
insert...
December 6, 2006 at 10:03 am
Steve - please tell us that you were able to identify the culprit and that he/she is now history on this site ?!?!
Also that measures have been taken to prevent...
December 6, 2006 at 8:12 am
Sorry - didn't realize that this was a "cleaning operation"....
December 5, 2006 at 12:25 pm
So it's not just a simple.....
SELECT EmpName, MAX(EmpDateTime)
FROM Employees
GROUP BY EmpName...
December 5, 2006 at 12:16 pm
I can't hear your thoughts as well as I was able to - combination of various factors not the least of which is that I don't visit this site as...
December 5, 2006 at 11:58 am
And how was I supposed to know you already emailed Steve....the crystal ball I use doesn't work that well Remi..
December 5, 2006 at 11:06 am
Viewing 15 posts - 106 through 120 (of 2,469 total)