Viewing 15 posts - 10,426 through 10,440 (of 14,953 total)
Lynn Pettis (3/17/2009)
Has anyone seen St Michael of Earl? Curious if he may have left THE THREAD.
May be taking a "desert sabatical", if he was paying attention to The...
March 17, 2009 at 1:56 pm
J (3/17/2009)
Lynn Pettis (3/17/2009)[
Sorry, had to make a slight correction, emphasis is mine.
Woops! with my limited command of the Englsih language (not my mother tonge) I assumed Lynn was a...
March 17, 2009 at 12:30 pm
I would suggest contacting tech support for the monitoring product and seeing if they can help.
March 17, 2009 at 12:14 pm
Try this:
declare @name sysname
set @Name = 'A_NEW_York'
select @name where @name like 'a[_][a-z][a-z][a-z][_]%'
Square-brackets around an underscore make it a literal-string, instead of a variable. Test it with this:
declare @name sysname
set...
March 17, 2009 at 12:11 pm
Not stupid. Just have stuff to learn about SQL. Who doesn't?
March 17, 2009 at 12:05 pm
Try this:
select @NewCourse =
(select min(Courses.CourseID)
from @Courses Courses
left outer join @Enrollment Enrollment
on Courses.CourseID = Enrollment.CourseID
and Student = @Student
where Enrollment.CourseID is null);
See if that'll do what you need.
March 17, 2009 at 11:47 am
If I understand what you mean, that you want to make a date and time look a certain way, do that in the front end (report/web page/form/whatever). Easier and...
March 17, 2009 at 11:43 am
chrisn (3/17/2009)
The Express version is designed by Microsoft to fill this hole, where a solid RDBMS engine is required but not all the extra features. I guess encouraging the use...
March 17, 2009 at 11:40 am
Why would you be in the middle of both regression testing and installing a service pack on the same server at the same instant? Or am I misunderstanding your...
March 17, 2009 at 11:39 am
gary (3/17/2009)
March 17, 2009 at 11:28 am
YSLGuru (3/17/2009)
March 17, 2009 at 11:23 am
It seems to be dropping blank lines in the format. Maybe I'm doing something wrong, but it seems to be doing so.
Line one, followed by a blank line
Line two
That...
March 17, 2009 at 11:18 am
foxjazz (3/17/2009)
What I am speaking about is language, not about application.
It seems many have failed to grasp that simple concept, and appear too...
March 17, 2009 at 11:17 am
Both can do 10 characters. One takes 10 bytes for that, the other takes 20 (plus overhead in both cases). The 10-byte one, varchar, can only hold ASCII...
March 17, 2009 at 11:09 am
Lynn, have you tried it? I just tried all of these options:
create table #T (
ID int identity primary key,
Col1 tinyint,
Col2 tinyint);
alter table #T
alter column Col1 smallint, alter column Col2...
March 17, 2009 at 9:45 am
Viewing 15 posts - 10,426 through 10,440 (of 14,953 total)