Viewing 15 posts - 2,911 through 2,925 (of 3,233 total)
There is an option in the Maintenance Plan Wizard that will allow you to specify backup retention. Setting this option will remove old files for you.
April 26, 2006 at 10:20 am
You will not need to use a temp table. This will work:
CREATE TABLE T1A (TextColumn varchar(1000))
CREATE TABLE T2A (TextColumn varchar(1000))
INSERT INTO T1A
SELECT 'This is a text' UNION ALL
SELECT 'And this...
April 26, 2006 at 9:53 am
Hasan,
You should create a new post for your question. It is more likely to get answered in its own post since it is a new question.
April 26, 2006 at 8:27 am
What you are seeing is normal. When you have 2GB allocated to SQL Server, it will allocate most of it for the buffer pool, but it will also reserve around...
April 25, 2006 at 3:03 pm
If this is a scheduled job, there should be more information in the job history. Check there and in the SQL and application logs for error messages. What account is...
April 25, 2006 at 1:20 pm
I guess I got away from what he'd originally stated about the stored procedure running for more than 30 seconds. Yelena is correct, look at the stored procedure code. If...
April 25, 2006 at 10:11 am
It looks like those counters have more to do with activity. Watching them could over a period of time could tell you how active your network card is. You may...
April 25, 2006 at 8:11 am
A timeout expired error could be a number of things, network included. The error means just what it says, there is a timeout occuring either in the database, session, or...
April 24, 2006 at 3:31 pm
In order to compare 2 database backups, you must restore both of them. Enterprise manager will not compare databases for you. There many third party tools that will do this...
April 24, 2006 at 2:59 pm
If the Unique Identifier column does not allow nulls, you need to insert a value.
Insert into DirectoryHierarchy(directoryId,ParentDN,RDN,Type)
select NEWID() as DirectoryID, ParentDN, (FirstName + ' ' + LastName) as RDN,...
April 24, 2006 at 12:13 pm
Has this plan ever worked before? This looks like a permissions problem. Do you have your SQL Server service running under the system account or a local or domain account...
April 21, 2006 at 4:05 pm
I would recommend creating the index, but not removing the BEGIN TRAN keyword. As Colins stated, transactions are best made small and quick. I do not feel that removing the...
April 21, 2006 at 3:54 pm
Yes, however, if you wish to overwrite your backup file each day, you will need to set your RETAINDAYS to zero or 1.
April 21, 2006 at 11:02 am
You need to set the ExpireDate/RetainDays. From Backup in BOL:
If EXPIREDATE or RETAINDAYS is not specified, expiration is determined by the media retention configuration setting of sp_configure. These options only prevent...
April 21, 2006 at 10:12 am
SQL Server is telling you that you have a physical inconsistancy in your data file. You must restore from backup (or rebuild in your case). Read TORN_PAGE_DETECTION in BOL. There...
April 21, 2006 at 9:09 am
Viewing 15 posts - 2,911 through 2,925 (of 3,233 total)