Viewing 15 posts - 5,986 through 6,000 (of 7,501 total)
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
... So, I'm using a stored procedure which reads: xp_cmdshell ![]()
osql sp_reportSP blah blah ...
within your sp...
December 20, 2006 at 6:24 am
no. the available nodes for the sqlserver-instance is totaly managed by the cluster-administrator-software.
The sqlserverinstancename is something you cannot change. drop/create is the way for that.
December 20, 2006 at 6:16 am
what you see is the encrypted hexadecimal text representing the packagename
you can add another jobstep cmdexec-type with
dtsrun.exe /N package_name
you can find more info in books online (search dtsrun)
December 20, 2006 at 6:11 am
what happens if you start sqlserver with minimal config from the commandprompt ?
sqlservr.exe -f
![]()
look for startup procs and disable them
December 18, 2006 at 1:49 pm
Viewing 15 posts - 5,986 through 6,000 (of 7,501 total)