Viewing 15 posts - 5,836 through 5,850 (of 6,400 total)
also take a look at sp_msforeachtable
e.g
sp_msforeachtable 'exec sp_spaceused [?]'
February 23, 2012 at 8:16 am
that link is good tells you the cause and how to work around it
you need to read the error log, either the SQL error log or the windows error log...
February 23, 2012 at 8:14 am
Simha24 (2/23/2012)
I am not getting report options
take a look for the performance dashboard reports for SQL 2005
also on a side note, this is the 2008 section, you will get the...
February 23, 2012 at 8:09 am
full text catalogs are not tables, they are usually stored on their own filegroup
so as the error states take a look through your error log to find when the filegroups...
February 23, 2012 at 8:00 am
what information do you want, how big a table is in terms of its storage?
there are the reports at db level which gives that kind of information
right click a DB,...
February 23, 2012 at 7:45 am
SQL_Surfer (2/17/2012)
1) Backup/detach databases from 2005.
2) Script...
February 23, 2012 at 7:40 am
speak to SAP and ask which SP is being called
run a profile trace, perform the task and look at the SP's being called
February 23, 2012 at 7:36 am
haven't we already had a topic on this
http://www.sqlservercentral.com/Forums/Topic1253238-1550-1.aspx
February 23, 2012 at 7:34 am
take a look through your error log as to why the filegroup when offline.
if the error can be fixed, do so and bring the filegroup back online and backup
otherwise change...
February 23, 2012 at 7:24 am
not to worry, easy one that, especially for just three characters difference in the SP name
February 23, 2012 at 7:15 am
please read through this url, it will detail how to give permission to the SQL service account so it can register/deregister the SPN on startup and shutdown
http://technet.microsoft.com/en-us/library/cc773257%28v=ws.10%29.aspx
and this url
February 23, 2012 at 7:12 am
thats to add a user to a DB role, for a server role you need
sp_addsrvrolemember
February 23, 2012 at 7:07 am
might want to wrap this in sp_msforeachdb and strip out some of the stuff you dont need
select * from sys.database_role_members drm
join sys.database_principals dp
ON drm.role_principal_id = dp.principal_id
join
sys.database_principals...
February 23, 2012 at 7:06 am
You cant create custom server roles unless you have SQL 2012.
February 23, 2012 at 7:00 am
Viewing 15 posts - 5,836 through 5,850 (of 6,400 total)