Viewing 15 posts - 61 through 75 (of 109 total)
Jeff the funniest thing is this table does not have any indexes on it.. Nor does it have a primary key... Having no indexes makes the queries run slowly...
This...
February 10, 2010 at 3:47 am
The table is 135 GB in size. There are 5 columns all of which have datatype int and varchar(15).
I would keep George's suggestion as an option (Inserting into a...
February 8, 2010 at 10:54 am
Yes.. Tried that but it returns the following message...
Msg 15330, Level 11, State 1, Procedure sp_helprotect, Line 291
There are no matching rows on which to report.
Correct me if...
January 6, 2010 at 4:40 am
Let me put it this way.. I have a table abc and I need to know the groups/users who can access the table abc...
January 6, 2010 at 4:26 am
Like mascot said a Log file size of 4 GB is acceptable for a 133 GB database. I believe the issues you are facing is the updates/inserts are taking longer...
December 24, 2009 at 4:58 am
The table access in a database can give you an idea when your database was last used. Make sure the server has not been restarted recently.
December 24, 2009 at 3:00 am
/*
When was my table last accessed ??
Note: If SQL Server is restarted, the information from DMV's is reset.
*/
--For all DB's in Server
CREATE TABLE #USEDDB
(
dbname varchar(50),
[object_name] varchar(50),
user_seeks int,
user_scans int,
user_lookups int,
user_updates int,
last_user_seek...
December 24, 2009 at 2:59 am
Check if the user you are using is an Orpahaned user ?
sp_change_users_login 'report'
December 21, 2009 at 4:09 am
Hi Eswin,
Here is a query to collect details of all tables, their data/index space usage and % space they occupy in a database. Check out if this can be of...
December 21, 2009 at 3:26 am
Could you give us some more information...
There can be many reasons why the maintenance plan has failed with the error msg that you have given...
November 5, 2009 at 10:58 am
Configuring Database Mail is very straight forward.
Check out this link http://www.sqlservercentral.com/articles/Administration/introtodatabasemailinsql2005/2197/[/url]
You need to get the smtp server details from your administrator. Make sure no firewall issues exist and you...
October 29, 2009 at 6:58 am
Copy the files to the server on which you are trying to restore - it's the recommended way.
If you try to restore it from a shared location you can...
October 29, 2009 at 6:45 am
You can collect the information you want(Uptime, Errorlogs, Diskspace, Db Status, Db Size etc..) from every server and put it into a centralized server using Integration service or even VBScript...
Once...
October 29, 2009 at 2:53 am
I've seen Reporting service come under Drive:\Microsoft SQL Server\MSSQL.3\Reporting Services
on more than one ocassion...
Folders LogFiles, ReportManager, ReportServer and RSTempFiles comes under this...
I believe when you install SQL Server and...
September 21, 2009 at 2:11 pm
As you are backing up to a network drive make sure the user running the backup job has the required permissions on the network drive.. If this Job has been...
September 21, 2009 at 2:01 pm
Viewing 15 posts - 61 through 75 (of 109 total)