Viewing 15 posts - 3,736 through 3,750 (of 6,679 total)
Since this will be a one-time operation, you can use SHRINKFILE to shrink the data file. What you'll have to do first is try rebuilding all indexes. You...
June 11, 2010 at 1:21 pm
sqlserver12345 (6/10/2010)
*
FROM Table1
WHERE
mydate =convert(varchar, getdate(), 111)
I am running this query in SSIS.I have data with todays date but I cant return the data with the above sql.It runs...
June 11, 2010 at 12:20 pm
Check the history for the maintenance plan instead of the job history. This will show you which task failed, and on that task you can get the actual error...
June 11, 2010 at 12:11 pm
AndrewSQLDBA (6/9/2010)
June 9, 2010 at 10:40 am
Yes, the list of databases is generated when the plan is saved.
You have to make a change to the backup task and re-select the list of databases to be backed...
June 9, 2010 at 10:29 am
JC-3113 (6/9/2010)
this is the maint plan error:
One or more selected databases no longer exist on server.
They are no longer in the plan, so why would it say...
June 9, 2010 at 10:05 am
The default trace might contain this, since it does capture object creation and drops. You'll have to check it out to see if it still exists.
June 5, 2010 at 11:47 am
By default, the alias 'gm' is defined for the cmdlet Get-Member. You are trying to override the alias and you can't do that.
June 3, 2010 at 10:37 pm
No, switching from FULL to BULK_LOGGED and back to FULL does not break the log chain. If you switch to SIMPLE, that will break the log chain.
Just be aware...
June 3, 2010 at 10:36 pm
Once the transaction log has grown out large enough to support the rebuild, then it shouldn't grow anymore. If you are shrinking it after that process, all you are...
June 3, 2010 at 10:00 pm
Are you going to be adding any more data to this database? If not, then you could shrink it and then rebuild indexes. If you are going to...
June 3, 2010 at 7:37 pm
Well, unfortunately you are going to have to drop the constraint. The constraint is enforced using the index and the index cannot be dropped until the constraint has been...
June 3, 2010 at 2:38 pm
If this is truly a one to one relationship, why are you creating a separate table? You should just be adding the disposition column to the sales order table.
With...
June 3, 2010 at 2:16 pm
If you can provide some sample data and table definitions as outlined in the article I link to, we can provide a tested solution that will work.
At this point, the...
June 3, 2010 at 2:10 pm
Why are you shrinking in the first place? Can you be absolutely sure that space will never be used again? If not, then there really is no reason...
June 3, 2010 at 1:58 pm
Viewing 15 posts - 3,736 through 3,750 (of 6,679 total)