Viewing 13 posts - 1 through 13 (of 13 total)
I have similar setup I am trying to get it to work.
I have CMS registered with windows authenticated id that is running sql agent, it has sysadmin permissions.
I have powershell...
November 14, 2011 at 12:59 pm
Where did you get the installation scripts for YUKON ?
February 24, 2004 at 8:15 am
Its like this, say this trigger is in PROD database
create trigger my_tr
...
..
insert into prod1.dbo.work
values (..)
go
etc
end
go
SO when I restore this database over dev this trigger will still have reference to...
October 2, 2003 at 10:51 am
Yes, restoring prod to prod1 and dev to dev1 is not a issue, the problem is prod has hard coded triggers that point to prod1 but after restore from prod...
October 2, 2003 at 10:48 am
That won't work, customers can have multiple databases on same instance, you cannot have 2 databases with the same name , right ?
If one is PROD and the other is...
October 2, 2003 at 9:55 am
no this doesn't work either, what I want to is combine 2 updates, they have same where clause... those work individually, but when I combine those, they don't
I want to...
October 23, 2002 at 12:29 pm
this one does not work too
Update mwebWorkCalcs
set mwebWorkCalcs.WorkCalcs_Actual_Hrs=SumTasks.Actual_Hrs,WorkCalcs_Expenses= SumTasks.Expenses
From (select isnull(sum(TASK.WorkCalcs_Actual_Hrs),0.0) as Actual_Hrs,
isnull(sum(TASK.WorkCalcs_Expenses),0.0) as Expenses
from MWEBWORK, MWEBWORKCALCS TASK, mwebWorkCalcs Proj
where TASK.WORKCALCS_WORK_ID = WORK_ID AND...
October 23, 2002 at 9:40 am
thanks, it looks scary... I will try to find out some more info. before doing this.
Thanks
Sonali
May 14, 2002 at 2:03 pm
I read that article but that does not say if I can change the server collation after the installation.
Thanks
Sonali
May 14, 2002 at 1:44 pm
This is one of our customer - Text datatype can take only 2000 characters they want to increase it to 2048 and thats why need to change text to varchar(2048).
...
September 12, 2001 at 9:27 am
Viewing 13 posts - 1 through 13 (of 13 total)