Viewing 15 posts - 691 through 705 (of 4,745 total)
differential backups contain all the extents that have been touched by updates, therefore a single row update would lead to 64k worth of backup. Educated guess some process or processes...
April 6, 2013 at 12:09 pm
you cannot alter the trace in flight, just stop and restart the trace and it will pickup the new settings.
April 5, 2013 at 12:23 pm
if this is a server side trace there must be a trace script file somewhere. In there there will be a set @maxfilesize statement, alter that to the value you...
April 5, 2013 at 10:11 am
There is no simple way to do this without sysadmin I am afraid,, its a design flaw in SQL, but an intended one. There is a connect item about this,...
April 5, 2013 at 9:01 am
balasach82 (4/4/2013)
SQL auth is enabled, Login, user, db access are all provided.
Login failed for user 'ZZZZ'. Reason: Could not find a login...
April 5, 2013 at 3:33 am
grant connect they would have anyway but there might be other rights granted to logins in that list.
you now have everything except default language -
select 'exec sp_defaultlanguage ',+"'" +name...
April 4, 2013 at 7:54 am
two things come to mind -
full text indexing
and if you have enterprise edition fuzzy grouping in SSIS advanced data flow transformations.
April 4, 2013 at 7:36 am
SET NOCOUNT ON
SELECT 'USE' + SPACE(1) + QUOTENAME('MASTER') AS '--Database Context'
-- server Role Members
SELECT 'EXEC sp_addsrvrolemember @rolename =' + SPACE(1)
+ QUOTENAME(usr1.name, '''') + ', @loginame ='...
April 4, 2013 at 7:27 am
database permissions for users are all held within the database, so once the login is tied up with the user via the sid, user database permissions will all be correct.
April 4, 2013 at 3:28 am
and if this is production I would turn autoshrink off. when you look at the report it will be obvious why from the constant shrinks and re-growths I expect you...
April 2, 2013 at 10:36 am
all shrink events appear in the default trace and you can see them listed under database - right click - reports - standard reports - disk usage.
Reindex jobs are the...
April 2, 2013 at 10:32 am
no problems, at least its a one off operation and the database can be used whilst you are doing the reorg.
April 1, 2013 at 4:51 pm
....and to know where the last active vlf is, run command
dbcc loginfo(yourdbname)
the last row with a '2' in the status column is the last active vlf, the log will not...
April 1, 2013 at 11:28 am
ErikMN (4/1/2013)
April 1, 2013 at 11:17 am
Viewing 15 posts - 691 through 705 (of 4,745 total)