Viewing 15 posts - 23,881 through 23,895 (of 26,490 total)
You are aware that SQL Server Notification Services (if that is what you are refering to in your posts regarding notification services) goes away with SQL Server 2008.
November 5, 2008 at 11:18 am
Christopher Stobbs (11/5/2008)
Lynn yours would work if you LTRIM RTRIM the status first.
I thought so. I just attacked the obvious BOOLEAN error in the original code and didn't really...
November 5, 2008 at 10:49 am
bang725 (11/5/2008)
in my table date is in format - 11/1/2008 12:00:00 AMwhile sending HTML email notification it is coming like 2008-11-01T00:00:00?
wht is issue?
No issue. What you see in...
November 5, 2008 at 10:37 am
Andrew Peterson (11/5/2008)
November 5, 2008 at 10:09 am
Sounds good. Again, just curious, did you try changing the OR to AND in your original query?
November 5, 2008 at 9:54 am
Why build an indexed view. You can just build a covering index.
--build a nonclustered index
create nonclustered index xxx_empno_IX1 on
xxx (
...
November 5, 2008 at 9:38 am
dale_keller (11/5/2008)
Thanks ever so much. That worked great.
Which way did you fix your problem?
November 5, 2008 at 9:18 am
What is the view? Please post the DDL for the view as well.
November 5, 2008 at 7:09 am
Here is the skeleton code you would use:
update dbo.mytable set
column2update = somevalue
where
column2update is null;
What value you would use; that you, your developers,...
November 4, 2008 at 9:00 pm
GilaMonster (11/4/2008)
Lynn Pettis (11/4/2008)
WHY is everyone so eager to shrink their databases transaction log files?
Beats me. I'm wondering why people are so eager to throw away log records and...
November 4, 2008 at 7:06 pm
Before you can set a column that currently allows NULL values to NOT ALLOW NULL values, you have to identify all the rows in the table where that column currently...
November 4, 2008 at 6:55 pm
Viewing 15 posts - 23,881 through 23,895 (of 26,490 total)