Welcome to dbForumz.com!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

why is the SQL backup filesize so big

 
   Database Forums (Home) -> Replication RSS
Next:  Setting up replication with virtual server name  
Author Message
aaileng

External


Since: Oct 18, 2006
Posts: 2



(Msg. 1) Posted: Wed Oct 18, 2006 6:42 pm
Post subject: why is the SQL backup filesize so big
Archived from groups: microsoft>public>sqlserver>replication (more info?)

Hi,

We have an database which is about the file size of 730MB, this db is
set configure with publisher and will always push data to our backup
server database. When we backup this db, the database backup filesize
is actually 85GB (full backup from SQL).
Anyone has any idea why is my database backup filesize so big. Is
there any settings we have configure wrongly?
As we are going to populate more customer data into this database,
expected to increase the databse filesize to 2.5GB, will the backup
filesize be triple? If this is the case, we will need to buy
additional harddisk to cater for this.

Thanks!!

 >> Stay informed about: why is the SQL backup filesize so big 
Back to top
Login to vote
Hilary Cotter3

External


Since: Aug 28, 2004
Posts: 1259



(Msg. 2) Posted: Wed Oct 18, 2006 9:57 pm
Post subject: Re: why is the SQL backup filesize so big [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Can we see your backup statement? Also are there full-text catalogs hanging
off this database?

--
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.

This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com



wrote in message

> Hi,
>
> We have an database which is about the file size of 730MB, this db is
> set configure with publisher and will always push data to our backup
> server database. When we backup this db, the database backup filesize
> is actually 85GB (full backup from SQL).
> Anyone has any idea why is my database backup filesize so big. Is
> there any settings we have configure wrongly?
> As we are going to populate more customer data into this database,
> expected to increase the databse filesize to 2.5GB, will the backup
> filesize be triple? If this is the case, we will need to buy
> additional harddisk to cater for this.
>
> Thanks!!
>

 >> Stay informed about: why is the SQL backup filesize so big 
Back to top
Login to vote
aaileng

External


Since: Oct 18, 2006
Posts: 2



(Msg. 3) Posted: Thu Oct 19, 2006 3:02 am
Post subject: Re: why is the SQL backup filesize so big [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

Thanks for your reply. When u ask how big is the log, how can i check?
is it the dbname_log.ldf file? If yes, then the log filesize is very
small, only 1MB.

Thanks.


Paul Ibison wrote:
> How big is the log? If this is the cause of the large backup size, then you
> could back it up separately first then shrink it (do this because the
> restore will restore the original filesize). If the log is not shrinking,
> have a look for open transactions (DBCC OPENTRAN).
> Cheers,
> Paul Ibison SQL Server MVP, www.replicationanswers.com .
 >> Stay informed about: why is the SQL backup filesize so big 
Back to top
Login to vote
Paul Ibison1

External


Since: Mar 01, 2004
Posts: 640



(Msg. 4) Posted: Thu Oct 19, 2006 9:32 am
Post subject: Re: why is the SQL backup filesize so big [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

How big is the log? If this is the cause of the large backup size, then you
could back it up separately first then shrink it (do this because the
restore will restore the original filesize). If the log is not shrinking,
have a look for open transactions (DBCC OPENTRAN).
Cheers,
Paul Ibison SQL Server MVP, www.replicationanswers.com .
 >> Stay informed about: why is the SQL backup filesize so big 
Back to top
Login to vote
Paul Ibison1

External


Since: Mar 01, 2004
Posts: 640



(Msg. 5) Posted: Thu Oct 19, 2006 2:16 pm
Post subject: Re: why is the SQL backup filesize so big [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

sp_helpdb 'yourdbname' will do it. This'll also show if you have any other
logfiles which occupy the size.
Cheers,
Paul Ibison SQL Server MVP, www.replicationanswers.com .
 >> Stay informed about: why is the SQL backup filesize so big 
Back to top
Login to vote
linginasg

External


Since: Oct 25, 2006
Posts: 1



(Msg. 6) Posted: Wed Oct 25, 2006 8:15 pm
Post subject: Re: why is the SQL backup filesize so big [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

Here's the backup script,
BACKUP DATABASE [PRODPFR] TO DISK = N'F:\MSSQLBackup\ProdPfr_Bkp' WITH
NOINIT , NOUNLOAD , NAME = N'PRODPFR backup', NOSKIP , STATS = 10,
DESCRIPTION = N'SQL Production Backup', NOFORMAT DECLARE @i INT
select @i = position from msdb..backupset where
database_name='PRODPFR'and type!='F' and backup_set_id=(select
max(backup_set_id) from msdb..backupset where database_name='PRODPFR')
RESTORE VERIFYONLY FROM DISK = N'F:\MSSQLBackup\ProdPfr_Bkp' WITH
FILE = @i

Please advise what is wrong.

How do i check if there are full-text catalogs hanging.

Thanks.

Hilary Cotter wrote:
> Can we see your backup statement? Also are there full-text catalogs hanging
> off this database?
>
> --
> Hilary Cotter
> Director of Text Mining and Database Strategy
> RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
>
> This posting is my own and doesn't necessarily represent RelevantNoise's
> positions, strategies or opinions.
>
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
>
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
>
>
>
> wrote in message
>
> > Hi,
> >
> > We have an database which is about the file size of 730MB, this db is
> > set configure with publisher and will always push data to our backup
> > server database. When we backup this db, the database backup filesize
> > is actually 85GB (full backup from SQL).
> > Anyone has any idea why is my database backup filesize so big. Is
> > there any settings we have configure wrongly?
> > As we are going to populate more customer data into this database,
> > expected to increase the databse filesize to 2.5GB, will the backup
> > filesize be triple? If this is the case, we will need to buy
> > additional harddisk to cater for this.
> >
> > Thanks!!
> >
 >> Stay informed about: why is the SQL backup filesize so big 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Problem in BACKUP job - Hi, I am using a job to take daily backup. BACKUP DATABASE databasenameTO DISK=N'path' WITH INIT,NOUNLOAD,NAME=N'name', NOSKIP,STATS=10,NOFORMAT and it was working fine. When I tried to restore the backup, I couldn't restore it, the backup was ..

Backup - 2000 - I've got a distibutor server, 1 publishing server and 3 subscribing servers all on SS 2000 SP4 with transactional immediate replication. What I want to know is this: 1) what is the "best practices way" to back up the distributor and 2) if ...

Initialize from backup files. - Hi, I have both my server at different location with around 4GB of database and network is poor. I am trying this feature of SQl 2005 replication which allows initial snapshot from backup. I could do it with pubs db but couldn't understand some..

Backup and restore of publisher - We use SQL Server 2000 with merge replication with 500 users. We are moving the server and need to temporarily move the database to a different server while the server is moved. Is there a way to backup and restore the server (publisher) without..

Off Site Backup Server - We are in the process of setting up an Off Site backup Server. Our production Server is currently Window Servers 2003 with TS, and we will be using DFS to duplicate the data on the other Server. Both Servers will be running GoldMine and SQL Server..
   Database Forums (Home) -> Replication All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]