Viewing 15 posts - 34,861 through 34,875 (of 39,793 total)
SELECT a.o_id
, a.o_tmst
, a.from_dept
, a.to_dept
, b.to_dept
from dummy a
inner join dummy b
on a.o_id = b.o_id
where b.o_tmst = ( select max( o_tmst)
from dummy c
where c.o_tmst < a.o_tmst
 
June 28, 2004 at 2:12 pm
I thought you had to have admin rights on the box. Are you sure these people don't have rights to stop/start services?
June 28, 2004 at 2:07 pm
Some other threads:
http://www.sqlservercentral.com/forums/shwmessage.aspx?messageid=120949
http://www.sqlservercentral.com/forums/shwmessage.aspx?messageid=111280
http://www.sqlservercentral.com/columnists/chedgate/fragmentation101.asp
http://www.sqlservercentral.com/columnists/ckempster/mappingdatabasefileobjectsandfragmentation.asp
June 28, 2004 at 1:58 pm
David, I assume you'd move it like you'd move any of the system dbs. Is this moving to a new location on the same server? Or a new server?
MS Ref:...
June 28, 2004 at 1:51 pm
As mentioned above, probably you are specifying NULL for the identity. Don't do that, just ignore it like it didn't exist.
June 28, 2004 at 1:39 pm
you might want to use replicaiton instead.
June 25, 2004 at 12:18 pm
Use this to build the loops
declare @i int, @j-2 int
select @i = 1
while @i < 36
begin
if @i < 27
select @j-2 = @i + 64
else
select @j-2 = @i + 48 -...
June 25, 2004 at 12:16 pm
Do they get this when EM starts? Perhaps they do not have master access?
June 25, 2004 at 12:12 pm
Did you change any other parameters?
Like the -d?
June 25, 2004 at 12:09 pm
I'm sure you can create an unattended installation file with the setup. BOL has instructions:
search: Performing an Unattended Installation
June 25, 2004 at 12:06 pm
That is interesting. Did you delete and recreate the message (in that line) to eliminate any suspiscious characters?
June 25, 2004 at 7:51 am
Check that tempdb is set to authogrow. You can extend tempdb onto another drive if that one if out of space.
Look for long running transactions and kill them, you may...
June 25, 2004 at 7:49 am
Which book?
Brian Knight's DTS book (http://www.sqlservercentral.com/columnists/sjones/prodts.asp) talks about dynamic properties a little as does Darren Green's site (http://www.sqldts.com)
June 24, 2004 at 12:11 pm
I tend to use SQLMail with Exchange in most places, but there are times when I've needed to send mail. I've use the above techniques as well as ASPMail with...
June 24, 2004 at 12:03 pm
Viewing 15 posts - 34,861 through 34,875 (of 39,793 total)