Viewing 15 posts - 136 through 150 (of 242 total)
RBarryYoung (5/19/2009)
What's a strong password .. really ?
"Rumpelstiltskin". Definitely. 😀
That made me chortle, we clearly have similar senses of humour (or some might say lack of...
May 20, 2009 at 1:50 am
As far as I know, no.
You'll be aware that Microsoft are trying to clamp down on 'back doors'
Ypu may be lucky though .. one of the super posters may contradict...
May 19, 2009 at 4:10 pm
Simply do
DBCC CHECKDB
It will perform all the checks you need.
The DATA_PURITY option just performs more limited checks.
May 19, 2009 at 3:56 pm
Thanks for the feedback.
Michael, you've clearly put a lot of effort into password generation but it comes to close to 'I can't remember it without post it stickers' for...
May 19, 2009 at 3:52 pm
GSquared (5/19/2009)
Try this:
select distinct srs_esd.*
from srs_esd
left outer join srs_cap
on srs_esd.esd_code = srs_cap.cap_stuc
where srs_cap is null;
kupy (5/19/2009)
select a.*
from a left outer join on A.ref_no= b.ref_no
where b.ref_no...
May 19, 2009 at 8:28 am
Hang on .. you seem to have introduced a conditional clause now and switched back to talking about tables A and B.
I think arjun.tewari was probably referring to the fact...
May 19, 2009 at 8:14 am
icampbell (5/19/2009)
SELECT distinct * FROM srs_esd JOIN srs_cap ON srs_esd.esd_code srs_cap.cap_stuc
however the distinct doesn't seem to work
tried this also
select distinct *
from srs_esd
where...
May 19, 2009 at 7:21 am
arjun.tewari (5/19/2009)
icampbell (5/19/2009)
A.ref_no= b.ref_no
how do i retrieve the detail of table A which do not appear in table B. The rows which...
May 19, 2009 at 7:19 am
Less, it will gve other processes time to get in and complete.
It's a bit of a balance how big the chunks should be and how big the gap should be....
May 19, 2009 at 6:55 am
If I understood your query it should be
select distinct *
from srs_esd
where srs_esd.esd_code not in(select srs_cap.cap_stuc from srs_cap)
not
select distinct *
from srs_esd,srs_cap
where srs_esd.esd_code not in(select srs_cap.cap_stuc from srs_cap)
May 19, 2009 at 6:52 am
Depends on the hardware.
Adding a null column should be quick as only the schema is marked up.
Once you start adding the data, the column will get populated and the page...
May 19, 2009 at 6:47 am
It depends what you want to do. What you are describing is just normal behaviour for the maintenance plan.
What will happen here though is that all the tables will be...
May 19, 2009 at 6:36 am
Well, you can save some time by doing it all at once
Alter table TableA Add ColA Bigint NOT NULL Constraint CF_tableA_ColA Default (0)
However 90M rows will take some time to...
May 19, 2009 at 6:28 am
A number of ways, simplest to read is probably
SELECT * FROM A WHERE A.ref_no NOT IN (SELECT b.ref_no FROM b)
These types of query are typically not that efficient when...
May 19, 2009 at 6:18 am
Viewing 15 posts - 136 through 150 (of 242 total)