Viewing 15 posts - 91 through 105 (of 272 total)
The confusing part to me is you say records from one will not be in the other table. If that is so, you have no way to join the...
June 29, 2010 at 2:32 pm
If I read this correctly (I probably didn't), it sounds like a union of the two.
June 29, 2010 at 1:28 pm
timscronin (6/29/2010)
June 29, 2010 at 1:03 pm
It depends. You could be trading some performance for this approach. The query will not be able to take advantage of caching certain elements, such as query plan...
June 29, 2010 at 11:57 am
aberndt (6/29/2010)
June 29, 2010 at 10:46 am
Eugene Elutin (6/29/2010)
rahulsony111 (6/29/2010)
I have a table with columns proj_id char(5), tenant_id char(6), lease_id char(8), Sales_yr numeric(4)
i want to distinct only proj_id, tenant_Id, Lease_id but not sales_yr how can...
June 29, 2010 at 10:22 am
In what part of the world do you live?
Generally speaking, certification is sometimes, but in my observation, not that often a requirement. It never hurts though.
June 27, 2010 at 9:45 am
You would need to generate the script from metadata. It's pretty easy though, depending on what you're trying to script.
June 24, 2010 at 10:44 am
Are you replicating 140,000 tables, or is that split among SPs, views etc?
You can stage it in several publications so that it is less of a strain to initialize. ...
June 24, 2010 at 10:25 am
Scott is correct, but I spotted a typo. It should be :
delete from SHIPPING_STG
from SHIPPING_STG ss
inner join (
select acct, item, max(sdate) as maxDate, min(sdate)...
June 23, 2010 at 2:45 pm
I have never found schemas usefull or necessary. They always seemed like a solution in search of a problem to me. I also never like the term "schema"...
June 22, 2010 at 11:12 am
Viewing 15 posts - 91 through 105 (of 272 total)