Viewing 15 posts - 5,866 through 5,880 (of 7,505 total)
e.g.
set nocount on
declare @OnlineRebuild char(1)
Set @OnlineRebuild = 'Y'
print '-- Begin ' + db_name() + ' ' + convert(varchar(25),getdate(),121) ;
Declare @SQLStmt varchar(max);
declare c1 cursor for
--print...
March 20, 2007 at 1:41 pm
did you read http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=510 by Clinton Herring ?
March 20, 2007 at 5:23 am
btw
- Are you using the correct BROKER_INSTANCE when you create the route ?
CREATE
ROUTE ErrorLoggerSendRoute WITH
March 20, 2007 at 2:15 am
did you try
GRANT SEND ON SERVICE ::ErrorLoggerReceiverService TO Public
in both db's !!
March 19, 2007 at 11:53 am
- did you check the Troubleshooting Service Broker (SSB) script ?
- did you check the sqlserver errorlog ?
March 19, 2007 at 5:49 am
open an RDC connection using your sqlagent-serviceaccount or sqlserver-serviceaccount.
Then try to run one of the FTP cmds from the cmd-prompt.
This way you're sure it uses the securitycontext of your serviceaccount.
Also...
March 19, 2007 at 1:53 am
- did you enable crossdatabase ownership chaining ?
If not db1.dbo <> db2.dbo
March 19, 2007 at 1:46 am
select Math.Student_No
from (select Student_No
from yourtable
where Subject = 'Math' ) Math
inner join (select Student_No
from yourtable
where Subject = 'Science' ) Science
on Math.Student_No = Science.Student_No
March 13, 2007 at 6:02 am
Maybe someone will know the answer, but this is not a mysql site ![]()
This site handles Microsoft SQL Server.
March 13, 2007 at 5:57 am
Please alow me to refer to the sp2a thread for followup of sp2 :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=112&messageid=349577
March 13, 2007 at 4:27 am
Aparently they realised they messed up .... and this is not good for anyone of us !!![]()
Does anybody remember the T-shirts "Nomore underdog" ?
March 13, 2007 at 1:38 am
Thank you for the feedback.
I'm still looking for the solution ![]()
March 12, 2007 at 7:43 am
That should be no problem ...
http://www.sql-server-performance.com/awe_memory.asp
EE can use up to 3Gb without awe
March 12, 2007 at 6:29 am
I use this script in a scheduled job to perform online indexrebuilds whenever possible (EE and DevEdtn only !)
set nocount on
declare @OnlineRebuild char(1)
Set @OnlineRebuild = 'Y'
print '-- Begin...
March 12, 2007 at 1:21 am
that's a flaw in taskmanager. (it cannot handle AWE stuff) There is more info on it at sqlservercentral.
I think perfmon shows correct figures.
March 6, 2007 at 10:21 am
Viewing 15 posts - 5,866 through 5,880 (of 7,505 total)