Viewing 15 posts - 286 through 300 (of 5,356 total)
Something along these lines
use tempdb
create table comp
(
c1 int not null
, c2 int not null
constraint pkcomp primary key(c1,c2)
)
insert into comp values(1,1)
alter table comp
drop constraint pkcomp
go
alter table comp
add c3 int null
go
update comp...
May 24, 2005 at 3:23 am
I would do this in some front end scripting language. That's much easier.
May 24, 2005 at 1:13 am
No, I just thought that it might be AS related, because I am not aware of CREATE ALIAS in T-SQL.
May 24, 2005 at 12:53 am
Farrell, you did nothing wrong. That's exactly what I meant with little annoaynce. Not that one should specify JOINs hints as normal way of doing business, but when you specify...
May 24, 2005 at 12:50 am
Aah, I see. I thought that it might be Analysis Services related, but then I saw you've posted it in the T-SQL section.
Sorry, i have no experience with RS...
May 23, 2005 at 3:06 pm
"Should you install SP4 on your production servers that use AWE?"
Do you intend to use AWE after installing SP4 or not?
May 23, 2005 at 3:01 pm
Farrell,
AJ already mentioned that INNER JOIN is the default JOIN type. Try this
USE PUBS
SELECT
r.royalty
, t.title
, t.type
, t.price
FROM
roysched r
INNER JOIN
titles t
ON
r.title_id = t.title_id
ORDER BY
r.royalty
SELECT
r.royalty
, t.title
, t.type
, t.price
FROM
roysched r
JOIN
titles t
ON
r.title_id =...
May 23, 2005 at 2:51 pm
Ken Henderson's books are probably the one's I've learned the most from. And, yes, I confess, I really, really like "SQL for Smarties" by Joe Celko.
May 23, 2005 at 2:45 pm
May 23, 2005 at 8:41 am
See if this helps: http://support.microsoft.com/default.aspx?scid=kb;EN-US;314546
May 23, 2005 at 4:17 am
http://www.orafaq.com might be a start. At least they have an active mailing list, that helped me getting started.
Good luck!
May 16, 2005 at 2:57 pm
Viewing 15 posts - 286 through 300 (of 5,356 total)