Viewing 15 posts - 1,876 through 1,890 (of 2,897 total)
It's possible to have autogrowth enabled, but also have max file size restricting the growth. I think you'd get a different error though.
June 10, 2009 at 8:41 am
GilaMonster (6/8/2009)
Internal (index) fragmentation or external (file) fragmentation?
For the first, rebuild your indexes
For the second, stop SQL and run a disk defragmentation tool. Speak to the SAN admins. There's usually...
June 9, 2009 at 8:47 am
rvz (6/3/2009)
Well, someone recomended this approach to me about a year ago because the log always grew very large in a short time (short time = the size of the...
June 4, 2009 at 7:50 am
I didn't try that. Would a user be able to use the command prompt ?
June 4, 2009 at 7:42 am
AShehzad (6/3/2009)
This may be an issue. In my case i have relatively small database so i perform a full backup before maintenance process each week.
If you set to simple, you...
June 4, 2009 at 7:34 am
No open transactions now. DBCC SQLPERF(LOGSPACE) showed 4.5 Gig. I've shrunk it to 1.5 Gig which should be enough. I need to get more disk !
June 2, 2009 at 6:01 am
No log shipping, mirroring or replication. I'll have to figure out what type of activity was going on.
Thanks for all the help.
June 2, 2009 at 4:05 am
Ratheesh.K.Nair (6/1/2009)
You have to run the dbcc shrinkfile or shrinkdatabase command to reduce the physical size of...
June 2, 2009 at 12:20 am
Yes, I can see the database in SSMS GUI, But I get an error if I try to display properties, and there is no + sign to expand it.
"Database MyDatabase...
June 1, 2009 at 11:02 pm
I cannot get any info on 1 database. sp_helpdb does not list it, although it is in sys.databases
June 1, 2009 at 10:31 pm
Thanks for the reply
How many databases do you have on this instance?
- 46 including system db
How many of these databases are in full recovery model?
- ...
June 1, 2009 at 9:51 pm
sysdepends may not be 100% accurate. You might create a stored procedure referencing a table that doesn't exist yet. In that case sysdepends does not get updated.
June 1, 2009 at 8:43 am
sateesh.kamalakar (5/27/2009)
SET ANSI_NULLS ONGO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[vwOppValue]
with SCHEMABINDING
AS
SELECT
tblLeadMaster.LeadName
,tblLeadMaster.LeadId
,tblEmployee.EmpName AS LeadOwnerName
,tblLeadMaster.LeadOwnerID
I was just going through figuring that out today also ! ...
May 27, 2009 at 2:22 pm
When you use the Import/Export wizard, you have the option to append or replace the data ("edit mappings"). You have to go into each table to set it which...
May 27, 2009 at 8:39 am
Viewing 15 posts - 1,876 through 1,890 (of 2,897 total)