Viewing 15 posts - 12,241 through 12,255 (of 14,953 total)
insert into people_request(org_code, email)
select pa.org_code, p.email
from people p
inner join people_assignment pa
on p.id= pa.id
left outer join people_request pr
on p.email = pr.email
and pa.org_code = pr.org_code
where pr.key_id...
August 15, 2008 at 2:00 pm
You can install alongside. I just finished doing exactly that.
The learning curve is pretty shallow from 2005 to 2008.
August 15, 2008 at 1:28 pm
I'm pretty sure it's not, but the way to find out for sure is contact Microsoft about it.
August 15, 2008 at 1:26 pm
I don't have 2000, but I have 2 instances of 2005 on my desktop machine. I just finished installing an instance of 2008 on the same computer. I...
August 15, 2008 at 1:26 pm
You probably can, but why not install 2008 and run the databases in compatibility 90 if you really need to do that?
You'd have to check with Microsoft to be certain,...
August 15, 2008 at 1:23 pm
Management Studio 2008 can't use it's debugging features on SQL 2005/2000.
I just installed a trial copy of 2008 today. Tested both Intellisense and debugging on 2008 and then on...
August 15, 2008 at 1:11 pm
That datediff calculation is using the 15 Aug start date for all of it's calculations. Thus, it adds the days for each month to the total for the prior...
August 15, 2008 at 1:03 pm
andrew gothard (8/15/2008)
Yeah, that's the View/Query Designer. It's awful and NO ONE should EVER use it. (there's another one of those rules, again)
Sorry - totally disagree. Give me one good...
August 15, 2008 at 9:11 am
It will affect inserts, but how much will depend on a couple of things, including how often you defragment the clustered index, how you set the fill factor on the...
August 15, 2008 at 7:38 am
Here's the script I use for testing upgrade from 80 to 90.
use [database] -- Please remember to fill this in!!
go
dbcc UPDATEUSAGE (0) WITH NO_INFOMSGS;
go
DBCC CHECKDB (0) with no_infomsgs;
go
-- Update...
August 15, 2008 at 7:33 am
The way to move data from one filegroup to another is to rebuild clustered indexes and designate the file group you want the index in. That moves the table...
August 15, 2008 at 7:24 am
Not sure what you mean by a batch file. Most .BAT files (which is what I think of when I think of a batch file), operate mostly without human...
August 15, 2008 at 7:22 am
Have you tried just typing "(local)" in to the server name box? As opposed to browsing, I mean.
August 15, 2008 at 7:16 am
Viewing 15 posts - 12,241 through 12,255 (of 14,953 total)