Viewing 15 posts - 31 through 45 (of 57 total)
You can start by backing up the TLOG to a network location and then shrinking the log files, which will start to free up some space.
If you add additional storage,...
August 26, 2010 at 6:00 pm
This is because the servername(or network name) must have changed in the past. the serverproperty('servername') will reflect the new name. however @@servername will reflect the old name.
To fix this issue,...
August 26, 2010 at 5:55 pm
The Max LogSize allowed in 2TB. it is pretty big a size for a log file and i will be surprised if you are reaching that limit!
You can specify multiple...
August 26, 2010 at 5:48 pm
Books On Line will be helpful.
you can read about some of these views for a start:
sys.server_principals
sys.server_permissions
sys.database_principals
sys.database_role_members
sys.database_permissions
August 26, 2010 at 5:43 pm
Users will generally be placed in the databases they would need access to. they will be mapped to Logins which reside in the master database. if the Login does not...
August 26, 2010 at 5:41 pm
beejug1983 (8/24/2010)
How can I get these CPU, Network & Memory details ? Can you guide me ?
You can use a profiler or one of the Set Statistics [time / IO]...
August 24, 2010 at 10:29 pm
would this help?
declare @tblattendance table ([Week Number] tinyint identity(0,1), num_att_on_day int, [Site ID] smallint)
insert into @tblattendance
select count(*) as num_att_on_day, [site id]
from tblattendance
where [Attendance date], > DATEADD(wk, DATEDIFF(wk,...
August 24, 2010 at 10:25 pm
Why are you trying to pause the inactive node. from my understanding, the installation will need both nodes and will apply the SP on both of them. The first error...
August 24, 2010 at 10:19 pm
One way I generally achieve this is by setting the default database for those users to a database that they dont have access to. for e.g. Database2(they DONOT have access...
August 22, 2010 at 9:39 pm
try using CTE.
you can also use cursor(smartly) or a while loop for all the duplicate appointmentids..
August 22, 2010 at 9:35 pm
Yes the rebuild will increase the transaction log. however, if you carefully do the index maintenence, the increase can be controlled. there is no need to do index maintenence on...
August 22, 2010 at 9:20 pm
1. During transaction log backup, is it the inactive portion of the log (LSN< MINLSN) that is actually archived?
This is correct.
2. If so, does the inactive VLFs...
August 19, 2010 at 5:27 pm
Shriji (8/17/2010)
While waiting on the reply, I created this small script and it proves what I assumed. The results are different:
create table #a (x int, y...
August 19, 2010 at 5:22 pm
You should check page splits through perfmon. if there are a lot of page splits occuring, then you need to look and adjust the fill factor. Also look at the...
August 18, 2010 at 5:00 pm
you need to make the database trustworth.
Try this:
alter database [DBNAME] set trustworthy on
August 18, 2010 at 4:55 pm
Viewing 15 posts - 31 through 45 (of 57 total)