Viewing 15 posts - 5,986 through 6,000 (of 7,505 total)
"I don't have access to the Prod DB" That's why you need good collaboration with your productiondba. It eases things to get hold on figures smoothly.
"AWE is enabled" so...
January 3, 2007 at 12:32 am
you can create your own mysa-account or use your windows-login with granted sqlserver-sysadmin-privileges !
I didn't disable 'sa' with sql2005 up until now, you'd have to test the effect of it,...
January 2, 2007 at 8:15 am
I hope this was the first of a series of usefull answers for this year ![]()
![]()
January 2, 2007 at 8:09 am
just my 2ct
- also keep in mind that many of the "technical" sales people even don't know their app runs just fine with a non-sa sqlaccount.
- you can try to...
January 2, 2007 at 7:21 am
maybe you could close your sqlserver's tcp/ip port on your firewall if you don't need external connections, just to delimit your perimeter for investigation.
(Default instances of SQL Server use TCP...
January 2, 2007 at 6:53 am
- how is the load of other queries in your system ?
- is this a dedicated sqlserver server ?
- 45 % avg cpu is not that alarming, but gives you...
January 2, 2007 at 6:47 am
- Which version of sqlserver are you using ??
- With sql2000 you may want to take a look at user defined functions to accomplish this
- with sql2005 a pivot might...
January 2, 2007 at 6:38 am
. means local computer.
.\mylogin is windows-userid mylogin at the local computer. It is not a domainaccount.
Likewize with SSMS you can connect to . meaning you want to connect to the local...
January 2, 2007 at 12:48 am
- Did you rebuild the indexes ?
- also manualy run dbcc updateusage and sp_updatestats on all your db or at least on the one where you encounter these alerts.
- try...
December 29, 2006 at 11:23 am
Check out Data Dude ! Visual Studio Team for DBAs ! Still in CTP, but very valuable for schema-maintenance AND test-data-generation !
December 27, 2006 at 12:59 am
with sql2000 you can use
select serverproperty('IsClustered') as IsClustered
Books online document serverproperty !
December 21, 2006 at 3:44 am
just as a litle example :
USE
[msdb]
GO
/****** Object: Job [FlipFlop] Script Date: 12/21/2006 09:44:50 ******/
BEGIN
TRANSACTION
DECLARE
@ReturnCode
December 21, 2006 at 1:50 am
1) keep Mohammed Uddin's note in mind : you cannot influence the running job ! (except stopping it)
2) there is no then...
December 21, 2006 at 1:26 am
fwiw
login using your sqlserver service account and alter its local user settings. and hope nothing else breaks due to this.
December 21, 2006 at 12:22 am
as you can see, dateformat is a client-problem. What I mean is that the format is set using the client-settings for the logged in user !
That is why dateformatting is...
December 20, 2006 at 7:15 am
Viewing 15 posts - 5,986 through 6,000 (of 7,505 total)