Viewing 15 posts - 5,866 through 5,880 (of 7,501 total)
- 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
I think you should also include @columnid = 13 in your trace setting to be able to apply a filter on it.![]()
March 6, 2007 at 10:17 am
So far, so good ![]()
how about disksubsystems ?
number of disks ?
type of disks ?
cache ?
rpm ?
write performance ? (ms)
March 1, 2007 at 7:18 am
... Hardware is nearly the same ...
- What are the HW differences ? (ram, disk,..)
- how about filefragmentation (disk level) ?
- If you just create empty objects and load with data,...
March 1, 2007 at 5:48 am
I/O ? Disks,..
How about the filesizes for the databases, are they the same, do they extend the same.
Has the new db been allocate at least the same size as the...
March 1, 2007 at 4:53 am
Viewing 15 posts - 5,866 through 5,880 (of 7,501 total)