Viewing 15 posts - 46 through 60 (of 148 total)
BOL Reference on how to Configure a Server to Listen on a Specific TCP Port.
June 8, 2012 at 5:07 pm
I'm guessing this is what you want:
;with PodCte
as
(
select
case
when month(DueDate) = 5
then DueDate
end as DL
from Purchasing.PurchaseOrderDetail
)
select *
from PodCte
where DL is not null;
In your immediate query DueDate isn't necessarily NULL, but since...
June 5, 2012 at 11:12 pm
ReginaR1975 (6/5/2012)
Didn't work.
Ok, can you post your whole query with your attempt?
June 5, 2012 at 10:26 pm
...
where YourCol is not null
YourCol would be the column that if it is null you want to omit those rows from the result set.
June 5, 2012 at 10:03 pm
Tony Parfitt-465405 (6/3/2012)
June 5, 2012 at 8:09 pm
toddasd (6/4/2012)
Steve Jones - SSC Editor (6/4/2012)
Seriously, that's important. Get up, even for 5 minutes.
Do some stretches. Google for the various ones for your wrist. Adding some...
June 5, 2012 at 8:08 pm
GilaMonster (6/5/2012)
Async Network IO waits are actually not network waits most of the time. They're waits for the client app to acknowledge the resultset,...
June 5, 2012 at 8:07 pm
Yes, there's a ton of SQL Server notes out there. You can find experts' knowledge through the many, many books out there on the subject. I have listed...
June 3, 2012 at 6:17 pm
Ok, I think triggers have narrowed my definition of DML, but you are right.
June 3, 2012 at 3:43 pm
GilaMonster (6/3/2012)
Thomas Stringer (6/3/2012)
Wouldn't performance would be degraded if the transaction log is often growing or growing with large growth?
If the log is actively growing, data modifications have to...
June 3, 2012 at 3:09 pm
GilaMonster (6/3/2012)
Please read through this - Managing Transaction Logs[/url] and this: http://www.sqlservercentral.com/articles/Transaction+Log/72488/Performance is not going to be related to the size of the log.
Wouldn't performance would be degraded if the...
June 3, 2012 at 2:49 pm
In my opinion, there are two benefits in helping others with issues that we are familiar with (i.e. SQL Server, data). The first and most obvious is that there...
June 3, 2012 at 2:44 pm
banda.sai (6/3/2012)
Also hosting team will take regular backups of database. But i don't know which recovery model they are using.
Currently performance...
June 3, 2012 at 11:36 am
Viewing 15 posts - 46 through 60 (of 148 total)