Viewing 15 posts - 8,341 through 8,355 (of 9,248 total)
you didnt get the job then?
full filegroup backup is different to full database backup
March 12, 2009 at 3:10 pm
Ryan Wellman (5/16/2007)
I changed the "log on as" to .\Administrator for SQL Server (MSSQLSERVER) and SQL Server Agent (MSSQLSERVER). In the SQL Server Configuration Manager and ran the Log...
March 12, 2009 at 2:54 am
the application will generally just issue statements to the database. What can cause problems is 32 bit versions of sql server interracting with 64 bit versions, replication in particular is...
March 11, 2009 at 5:03 pm
Dave (3/10/2009)
March 11, 2009 at 4:17 pm
if the server login exists and the database user exists in the database you only need to use
exec sp_change_users_login 'Update_One', 'Current user in DB', 'SQL login to link to'
March 11, 2009 at 4:10 pm
xgcmcbain (3/11/2009)
March 11, 2009 at 3:13 pm
queries are only a small part of what sits in RAM, you have the buffer pool too which comprises all the database pages read from disk to memory for modifying....
March 11, 2009 at 12:56 pm
i think the windows registry would be the best place to look
March 10, 2009 at 4:34 pm
try running it once a week during a known period of low or no activity!!
March 10, 2009 at 4:32 pm
GSquared (3/10/2009)
stuck with going back to your last full backup,
or differential if you have them.
Simple recovery logs just about the same as Full recovery although some transactions are minimally...
March 10, 2009 at 4:16 pm
what is the error you are seeing?
March 10, 2009 at 4:09 pm
in Profiler select the "Audit Shema Object Access Event" and filter it to look for your database name and object name (this should match the name of the table)
March 10, 2009 at 12:39 pm
the following should generate the alter schema commands to change schema for any Stored Proc not owned by dbo
select 'alter schema dbo transfer ' + sch.name + '.' + tab.name
from...
March 10, 2009 at 12:09 pm
if a manager asks you to setup Perfmon to monitor sql server processes and uses (especially on a multi instance box) he wouldnt expect you to say " yeah i'll...
March 8, 2009 at 3:42 pm
Viewing 15 posts - 8,341 through 8,355 (of 9,248 total)