Viewing 15 posts - 76 through 90 (of 1,335 total)
Checkout for the network bancwidth also.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:43 am
Run the DBCC CHECKDB with repair option to get rid of those errors.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:41 am
Second that.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:39 am
You need to send mails using xp_sendmail option.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:37 am
Please refer to the link
http://technet.microsoft.com/en-us/library/ms365356.aspx
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:36 am
CREATE PROC grants as
declare curse cursor for select name from sysobjects where type='P'
OPEN CURSE
declare @proc varchar(100)
declare @stmt nvarchar(200)
fetch next from curse into @proc
while @@fetch_status=0
begin
set @stmt='grant execute on '+@proc+' to...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:33 am
You can use many methodologies
1. run sp_who to find longer running processes and blocking
2. sp_lock to find locks in the server
3. use SQL profiler to trace sql performance problems
4. use...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:31 am
Public is a database role. When you add a login you add that to the sql server instance. you can map it to the public role when you add the...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:29 am
The database is less than a GB and only with 2 users and some transaction. You can handle this efficiently with a 2GB memory with 1GB for OS and other...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:27 am
You get the same answer. What exact is your need if you can tell me i can think of other possible solutions if i have any.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:25 am
Yes thats right Henri. I was just telling you an additional solution that was possible. Moreover you can write to the log and send them in the mail step which...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:23 am
How many databasea are there and what are thier sizes. If you have limited number of DBs smaller in size do a snapshot replication. Why don't you go for log...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:20 am
Are you using script to do this or the GUI. Can you post the script if you are using 1. The database as such will not go in read-only mode...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:18 am
Do you have remote connections turned on in the server.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:17 am
You can run from a client machine also. but you have to run against the server where the trace was taken from.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
February 28, 2008 at 8:15 am
Viewing 15 posts - 76 through 90 (of 1,335 total)