Friday, March 30, 2012

Maintenance plan issue

My apologies if this is not the right group for this question, but I couldn'
t find a "maintenance plans"
newsgroup for SQL Server . . .
About 3 ws ago I created maintenance plans on four databases: master, msd
b and two production databases
(I'll call them DB1 and DB2). I included:
1) update statistics used by the query optimizer
2) remove unused space from database files
3) check database integrity - include indexes - attempt to repair minor prob
lems
4) perform step 3 before backing up database and transaction log
5) backup database with verify
6) backup transaction log with verify
We run a nightly process wherein text files are downloaded from an AS/400 an
d fed into DB1.
This process runs on Tuesday through Saturday mornings, starts at 3:00 AM an
d finishes (under normal circumstances)
at about 5:30 AM. I scheduled the maintenance plans so that none of them ran
during this time.
As soon as the plans were in place and executing, I noticed a significant sl
owdown
in the abovementioned 2 hour download/import process. It started running at
least 1 hour longer;
on some days it would take up to 2 hours longer. I immediately disabled the
plan for DB1 -
no performance improvement whatsoever. Long story short - I finally disabled
all four plans,
and execution time was back to 2 hours again.
I will be doing some testing over the next few ws; enabling parts of the
plans on master and msdb,
but in the meantime I needed to know if anyone out there has experienced thi
s type of behavior and if so,
how you resolved the issue.
We're running SQL Server version 7.0 SP2 (7.00.842)
Note: the maintenance plans were created using the Enterprise Manager versio
n that came with SQL Server 2000;
don't know if that makes a difference.
Let me know if you need additional information about the issue.
And, thanks in advance for any assistance you can offer.
CarlI suspect that your culprit is step 2) remove unecessary space from database
s.
If your are using DBCC SHRINKFILE to compact your database and log files,
when the import job runs those jobs will need to grow in order to accommodat
e
the new data (especially the log file, if your recovery model is Full). If
the server has to grow the files during the import, it will definitely slow
things down.
Try removing that step from your plan and see what happens.
"Carl Imthurn" wrote:

> My apologies if this is not the right group for this question, but I could
n't find a "maintenance plans"
> newsgroup for SQL Server . . .
> About 3 ws ago I created maintenance plans on four databases: master, m
sdb and two production databases
> (I'll call them DB1 and DB2). I included:
> 1) update statistics used by the query optimizer
> 2) remove unused space from database files
> 3) check database integrity - include indexes - attempt to repair minor pr
oblems
> 4) perform step 3 before backing up database and transaction log
> 5) backup database with verify
> 6) backup transaction log with verify
> We run a nightly process wherein text files are downloaded from an AS/400
and fed into DB1.
> This process runs on Tuesday through Saturday mornings, starts at 3:00 AM
and finishes (under normal circumstances)
> at about 5:30 AM. I scheduled the maintenance plans so that none of them r
an during this time.
> As soon as the plans were in place and executing, I noticed a significant
slowdown
> in the abovementioned 2? hour download/import process. It started running
at least 1 hour longer;
> on some days it would take up to 2 hours longer. I immediately disabled th
e plan for DB1 -
> no performance improvement whatsoever. Long story short - I finally disabl
ed all four plans,
> and execution time was back to 2? hours again.
> I will be doing some testing over the next few ws; enabling parts of th
e plans on master and msdb,
> but in the meantime I needed to know if anyone out there has experienced t
his type of behavior and if so,
> how you resolved the issue.
> We're running SQL Server version 7.0 SP2 (7.00.842)
> Note: the maintenance plans were created using the Enterprise Manager vers
ion that came with SQL Server 2000;
> don't know if that makes a difference.
> Let me know if you need additional information about the issue.
> And, thanks in advance for any assistance you can offer.
> Carl
>|||Sorry, let me translate my post into English:
If your are using DBCC SHRINKFILE to compact your database (mdf) and log
(ldf) files, when the import job runs those files will need to grow in order
to accommodate the new data (especially the log file, if your recovery model
is Full). If
the server has to grow the files during the import, it will definitely slow
things down.
Try removing that step from your plan and see what happens.
"Mark Williams" wrote:
> I suspect that your culprit is step 2) remove unecessary space from databa
ses.
> If your are using DBCC SHRINKFILE to compact your database and log files,
> when the import job runs those jobs will need to grow in order to accommod
ate
> the new data (especially the log file, if your recovery model is Full). If
> the server has to grow the files during the import, it will definitely slo
w
> things down.
> Try removing that step from your plan and see what happens.
> --
> "Carl Imthurn" wrote:
>|||Thanks Mark -- I will check that out and see what happens.
And, thanks for the English translation ;-)
Carl
Mark Williams wrote:

> Sorry, let me translate my post into English:
> If your are using DBCC SHRINKFILE to compact your database (mdf) and log
> (ldf) files, when the import job runs those files will need to grow in ord
er
> to accommodate the new data (especially the log file, if your recovery mod
el
> is Full). If
> the server has to grow the files during the import, it will definitely slo
w
> things down.
> Try removing that step from your plan and see what happens.
>|||An alternative approach to the troubleshooting efforts: Disable all
maintenance plans, then add one very simple maintenance plan. Make it for
DB1 and have it do only one thing (back up the database); don't have it do
anything else. See what happens. If life is good, then proceed to add
additional steps and maintenance plans (one step at a time of course) until
the problem reappears. If it reappears right away with the simple (backup
only) maintenance plan on DB1, then kill that maintenance plan and do an
equivalent but for master, or model, or DB2 or whatever other database.
Whatever you do, the suggestion I'm making here is to start small and simple
and incrementally add complexity until it breaks. Upgrading to SQL Server
2000 probably wouldn't hurt anything...
Once you get that all figured out you might take your consultant to task for
not setting up a maintenance plan and testing it to begin with : )
-HTH
"Carl Imthurn" <nospam@.all.com> wrote in message
news:%23EzkzSALGHA.3264@.TK2MSFTNGP11.phx.gbl...
> My apologies if this is not the right group for this question, but I
> couldn't find a "maintenance plans"
> newsgroup for SQL Server . . .
> About 3 ws ago I created maintenance plans on four databases: master,
> msdb and two production databases
> (I'll call them DB1 and DB2). I included:
> 1) update statistics used by the query optimizer
> 2) remove unused space from database files
> 3) check database integrity - include indexes - attempt to repair minor
> problems
> 4) perform step 3 before backing up database and transaction log
> 5) backup database with verify
> 6) backup transaction log with verify
> We run a nightly process wherein text files are downloaded from an AS/400
> and fed into DB1.
> This process runs on Tuesday through Saturday mornings, starts at 3:00 AM
> and finishes (under normal circumstances)
> at about 5:30 AM. I scheduled the maintenance plans so that none of them
> ran during this time.
> As soon as the plans were in place and executing, I noticed a significant
> slowdown
> in the abovementioned 2 hour download/import process. It started running
> at least 1 hour longer;
> on some days it would take up to 2 hours longer. I immediately disabled
> the plan for DB1 -
> no performance improvement whatsoever. Long story short - I finally
> disabled all four plans,
> and execution time was back to 2 hours again.
> I will be doing some testing over the next few ws; enabling parts of
> the plans on master and msdb,
> but in the meantime I needed to know if anyone out there has experienced
> this type of behavior and if so,
> how you resolved the issue.
> We're running SQL Server version 7.0 SP2 (7.00.842)
> Note: the maintenance plans were created using the Enterprise Manager
> version that came with SQL Server 2000;
> don't know if that makes a difference.
> Let me know if you need additional information about the issue.
> And, thanks in advance for any assistance you can offer.
> Carl
>

Maintenance Plan Issue

Sorry for the repost but I had an issue with my alias and had to repost per
customer service.
I'm running across a weird issue that I can't figure out. I trying to create
a maintenance plan on two of my SQL 2000 Servers. I run throught the wizard
and get to the screen to setup the backup job and when I go to select the
delete files older than option I notice that that this blank. Typically it
has dyas, hours, and weeks here. The file extension is blank as well. Aslo
the number scroll for number of files does not work correctly down is up.
Any thought on this. This is my only SQl server I've seen this on. I have 5
other SQL servers that work fine when creating a maintenance job but not on
these two servers and really need to resolve the issue on these servers.
Hello,
Thank you for posting here.
Based on the symptom, it seems the "BackupDirectory " value of the
following registry key is corrupted or missing:
HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server\<instance
name>\MSSQLServer (named instance)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\ MSSQLServer (default
instance)
If it is missing, please right click above Key->New->String Value, change
the name to BackupDirectory, and change it value to the proper path such as:
C:\Program Files\Microsoft SQL Server\MSSQL\backup
NOTE: Using Registry Editor incorrectly can cause serious problems that may
require you to reinstall Windows. Microsoft cannot guarantee that problems
resulting from the incorrect use of Registry Editor can be solved. Use
Registry Editor at your own risk.
256986 Description of the Microsoft Windows Registry
http://support.microsoft.com/?id=256986
Have a nice day!
Best regards,
Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support
Microsoft Global Technical Support Center
Get Secure! - www.microsoft.com/security
================================================== ===
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
================================================== ===
This posting is provided "AS IS" with no warranties, and confers no rights.
| Thread-Topic: Maintenance Plan Issue
| thread-index: Acg26I1Tyaq8Y40fRC+Uz8AX1JIRtw==
| X-WBNR-Posting-Host: 207.46.19.168
| From: =?Utf-8?B?R2VvcmdlIFNjaG5laWRlcg==?=
<georgedschneider@.noemail.noemail>
| Subject: Maintenance Plan Issue
| Date: Tue, 4 Dec 2007 18:43:01 -0800
| Lines: 12
| Message-ID: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2992
| Newsgroups: microsoft.public.sqlserver.server
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32053
| NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| X-Tomcat-NG: microsoft.public.sqlserver.server
|
| Sorry for the repost but I had an issue with my alias and had to repost
per
| customer service.
|
| I'm running across a weird issue that I can't figure out. I trying to
create
| a maintenance plan on two of my SQL 2000 Servers. I run throught the
wizard
| and get to the screen to setup the backup job and when I go to select the
| delete files older than option I notice that that this blank. Typically
it
| has dyas, hours, and weeks here. The file extension is blank as well.
Aslo
| the number scroll for number of files does not work correctly down is up.
| Any thought on this. This is my only SQl server I've seen this on. I
have 5
| other SQL servers that work fine when creating a maintenance job but not
on
| these two servers and really need to resolve the issue on these servers.
|
|||Hello,
How's everything going?
I'm wondering if the suggestion has helped or if you have any further
questions. Please feel free to respond to the newsgroups if you need any
additional help.
Have a nice day!
Best regards,
Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support
Microsoft Global Technical Support Center
Get Secure! - www.microsoft.com/security
================================================== ===
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
================================================== ===
This posting is provided "AS IS" with no warranties, and confers no rights.
| X-Tomcat-ID: 96426387
| References: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: v-adamqu@.online.microsoft.com (Adams Qu [MSFT])
| Organization: Microsoft
| Date: Wed, 05 Dec 2007 09:22:23 GMT
| Subject: RE: Maintenance Plan Issue
| X-Tomcat-NG: microsoft.public.sqlserver.server
| Message-ID: <p9V2aByNIHA.7908@.TK2MSFTNGHUB02.phx.gbl>
| Newsgroups: microsoft.public.sqlserver.server
| Lines: 81
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32075
| NNTP-Posting-Host: TOMCATIMPORT1 10.201.218.122
|
| Hello,
|
| Thank you for posting here.
|
| Based on the symptom, it seems the "BackupDirectory " value of the
| following registry key is corrupted or missing:
|
| HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server\<instance
| name>\MSSQLServer (named instance)
|
| HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\ MSSQLServer (default
| instance)
|
| If it is missing, please right click above Key->New->String Value, change
| the name to BackupDirectory, and change it value to the proper path such
as:
|
| C:\Program Files\Microsoft SQL Server\MSSQL\backup
|
| NOTE: Using Registry Editor incorrectly can cause serious problems that
may
| require you to reinstall Windows. Microsoft cannot guarantee that
problems
| resulting from the incorrect use of Registry Editor can be solved. Use
| Registry Editor at your own risk.
|
| 256986 Description of the Microsoft Windows Registry
| http://support.microsoft.com/?id=256986
|
| Have a nice day!
|
| Best regards,
|
| Adams Qu
| MCSE, MCDBA, MCTS
| Microsoft Online Support
|
| Microsoft Global Technical Support Center
|
| Get Secure! - www.microsoft.com/security
| ================================================== ===
| When responding to posts, please "Reply to Group" via your newsreader so
| that others may learn and benefit from your issue.
| ================================================== ===
| This posting is provided "AS IS" with no warranties, and confers no
rights.
|
|
| --
| | Thread-Topic: Maintenance Plan Issue
| | thread-index: Acg26I1Tyaq8Y40fRC+Uz8AX1JIRtw==
| | X-WBNR-Posting-Host: 207.46.19.168
| | From: =?Utf-8?B?R2VvcmdlIFNjaG5laWRlcg==?=
| <georgedschneider@.noemail.noemail>
| | Subject: Maintenance Plan Issue
| | Date: Tue, 4 Dec 2007 18:43:01 -0800
| | Lines: 12
| | Message-ID: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| | MIME-Version: 1.0
| | Content-Type: text/plain;
| | charset="Utf-8"
| | Content-Transfer-Encoding: 7bit
| | X-Newsreader: Microsoft CDO for Windows 2000
| | Content-Class: urn:content-classes:message
| | Importance: normal
| | Priority: normal
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2992
| | Newsgroups: microsoft.public.sqlserver.server
| | Path: TK2MSFTNGHUB02.phx.gbl
| | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32053
| | NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| | X-Tomcat-NG: microsoft.public.sqlserver.server
| |
| | Sorry for the repost but I had an issue with my alias and had to repost
| per
| | customer service.
| |
| | I'm running across a weird issue that I can't figure out. I trying to
| create
| | a maintenance plan on two of my SQL 2000 Servers. I run throught the
| wizard
| | and get to the screen to setup the backup job and when I go to select
the
| | delete files older than option I notice that that this blank.
Typically
| it
| | has dyas, hours, and weeks here. The file extension is blank as well.
| Aslo
| | the number scroll for number of files does not work correctly down is
up.
|
| | Any thought on this. This is my only SQl server I've seen this on. I
| have 5
| | other SQL servers that work fine when creating a maintenance job but
not
| on
| | these two servers and really need to resolve the issue on these servers.
| |
|
|

Maintenance plan issue

I am using Enterprise manager on one server to manage SQL (MSDE) running on
another server. Am I OK so far?
When I create a maintenance plan for all databases on the MSDE server, and
set it for keeping the backup for X days, next the dropdown box which
should, I think, give options of hours, days, etc. is blank. Also, when I
put the ext3ension in as, say bak, save t6he plan then go back into it to
look at its properties, both my schedule and the extension are blank.
Any ideas ? Or, am I wrong to use EM for MSDE ?
Thanks
As far as the license issue, I am still confused by when you can and cannot
use MSDE and Enterprise Mangler together. The safest thing is to either:
A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff that
normally runs against MSDE onto a single Standard (soon to be Workgroup)
edition of SQL Server.
B) Use SQL Web Administrator
(http://www.microsoft.com/downloads/d...displaylang=en).
It's free and it's legal.
Geoff N. Hiten
Microsoft SQL Server MVP
Senior Database Adminstrator
"Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
>I am using Enterprise manager on one server to manage SQL (MSDE) running on
> another server. Am I OK so far?
> When I create a maintenance plan for all databases on the MSDE server, and
> set it for keeping the backup for X days, next the dropdown box which
> should, I think, give options of hours, days, etc. is blank. Also, when I
> put the ext3ension in as, say bak, save t6he plan then go back into it to
> look at its properties, both my schedule and the extension are blank.
> Any ideas ? Or, am I wrong to use EM for MSDE ?
> Thanks
|||I am not as concerned with licensing as I am with the technical feasibilty of
using EM to set up maintenance plans for a machine running MSDE as opposed to
full SQL. It seems like it just doesn't work with MSDE and that may be by
design.
"Geoff N. Hiten" wrote:

> As far as the license issue, I am still confused by when you can and cannot
> use MSDE and Enterprise Mangler together. The safest thing is to either:
> A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff that
> normally runs against MSDE onto a single Standard (soon to be Workgroup)
> edition of SQL Server.
> B) Use SQL Web Administrator
> (http://www.microsoft.com/downloads/d...displaylang=en).
> It's free and it's legal.
> Geoff N. Hiten
> Microsoft SQL Server MVP
> Senior Database Adminstrator
>
> "Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
> news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
>
>
|||Technically, you can use Enterprise Manager with MSDE. Even with EM, the
wizards may not work correctly with MSDE. The latest Books On-Line contains
much better content on MSDE than the original release BOL. You can download
it here:
http://www.microsoft.com/sql/techinf...2000/books.asp
"Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
news:5B0A3223-1555-4532-B012-9BF782154AA6@.microsoft.com...[vbcol=seagreen]
>I am not as concerned with licensing as I am with the technical feasibilty
>of
> using EM to set up maintenance plans for a machine running MSDE as opposed
> to
> full SQL. It seems like it just doesn't work with MSDE and that may be by
> design.
>
> "Geoff N. Hiten" wrote:

Maintenance plan issue

I am using Enterprise manager on one server to manage SQL (MSDE) running on
another server. Am I OK so far?
When I create a maintenance plan for all databases on the MSDE server, and
set it for keeping the backup for X days, next the dropdown box which
should, I think, give options of hours, days, etc. is blank. Also, when I
put the ext3ension in as, say bak, save t6he plan then go back into it to
look at its properties, both my schedule and the extension are blank.
Any ideas ? Or, am I wrong to use EM for MSDE '
ThanksAs far as the license issue, I am still confused by when you can and cannot
use MSDE and Enterprise Mangler together. The safest thing is to either:
A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff that
normally runs against MSDE onto a single Standard (soon to be Workgroup)
edition of SQL Server.
B) Use SQL Web Administrator
(http://www.microsoft.com/downloads/details.aspx?FamilyID=C039A798-C57A-419E-ACBC-2A332CB7F959&displaylang=en).
It's free and it's legal.
Geoff N. Hiten
Microsoft SQL Server MVP
Senior Database Adminstrator
"Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
>I am using Enterprise manager on one server to manage SQL (MSDE) running on
> another server. Am I OK so far?
> When I create a maintenance plan for all databases on the MSDE server, and
> set it for keeping the backup for X days, next the dropdown box which
> should, I think, give options of hours, days, etc. is blank. Also, when I
> put the ext3ension in as, say bak, save t6he plan then go back into it to
> look at its properties, both my schedule and the extension are blank.
> Any ideas ? Or, am I wrong to use EM for MSDE '
> Thanks|||I am not as concerned with licensing as I am with the technical feasibilty of
using EM to set up maintenance plans for a machine running MSDE as opposed to
full SQL. It seems like it just doesn't work with MSDE and that may be by
design.
"Geoff N. Hiten" wrote:
> As far as the license issue, I am still confused by when you can and cannot
> use MSDE and Enterprise Mangler together. The safest thing is to either:
> A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff that
> normally runs against MSDE onto a single Standard (soon to be Workgroup)
> edition of SQL Server.
> B) Use SQL Web Administrator
> (http://www.microsoft.com/downloads/details.aspx?FamilyID=C039A798-C57A-419E-ACBC-2A332CB7F959&displaylang=en).
> It's free and it's legal.
> Geoff N. Hiten
> Microsoft SQL Server MVP
> Senior Database Adminstrator
>
> "Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
> news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
> >I am using Enterprise manager on one server to manage SQL (MSDE) running on
> > another server. Am I OK so far?
> >
> > When I create a maintenance plan for all databases on the MSDE server, and
> > set it for keeping the backup for X days, next the dropdown box which
> > should, I think, give options of hours, days, etc. is blank. Also, when I
> > put the ext3ension in as, say bak, save t6he plan then go back into it to
> > look at its properties, both my schedule and the extension are blank.
> > Any ideas ? Or, am I wrong to use EM for MSDE '
> >
> > Thanks
>
>|||Technically, you can use Enterprise Manager with MSDE. Even with EM, the
wizards may not work correctly with MSDE. The latest Books On-Line contains
much better content on MSDE than the original release BOL. You can download
it here:
http://www.microsoft.com/sql/techinfo/productdoc/2000/books.asp
"Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
news:5B0A3223-1555-4532-B012-9BF782154AA6@.microsoft.com...
>I am not as concerned with licensing as I am with the technical feasibilty
>of
> using EM to set up maintenance plans for a machine running MSDE as opposed
> to
> full SQL. It seems like it just doesn't work with MSDE and that may be by
> design.
>
> "Geoff N. Hiten" wrote:
>> As far as the license issue, I am still confused by when you can and
>> cannot
>> use MSDE and Enterprise Mangler together. The safest thing is to either:
>> A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff
>> that
>> normally runs against MSDE onto a single Standard (soon to be Workgroup)
>> edition of SQL Server.
>> B) Use SQL Web Administrator
>> (http://www.microsoft.com/downloads/details.aspx?FamilyID=C039A798-C57A-419E-ACBC-2A332CB7F959&displaylang=en).
>> It's free and it's legal.
>> Geoff N. Hiten
>> Microsoft SQL Server MVP
>> Senior Database Adminstrator
>>
>> "Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
>> news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
>> >I am using Enterprise manager on one server to manage SQL (MSDE) running
>> >on
>> > another server. Am I OK so far?
>> >
>> > When I create a maintenance plan for all databases on the MSDE server,
>> > and
>> > set it for keeping the backup for X days, next the dropdown box which
>> > should, I think, give options of hours, days, etc. is blank. Also,
>> > when I
>> > put the ext3ension in as, say bak, save t6he plan then go back into it
>> > to
>> > look at its properties, both my schedule and the extension are blank.
>> > Any ideas ? Or, am I wrong to use EM for MSDE '
>> >
>> > Thanks
>>

Maintenance Plan Issue

Sorry for the repost but I had an issue with my alias and had to repost per
customer service.
I'm running across a weird issue that I can't figure out. I trying to create
a maintenance plan on two of my SQL 2000 Servers. I run throught the wizard
and get to the screen to setup the backup job and when I go to select the
delete files older than option I notice that that this blank. Typically it
has dyas, hours, and weeks here. The file extension is blank as well. Aslo
the number scroll for number of files does not work correctly down is up.
Any thought on this. This is my only SQl server I've seen this on. I have 5
other SQL servers that work fine when creating a maintenance job but not on
these two servers and really need to resolve the issue on these servers.Hello,
Thank you for posting here.
Based on the symptom, it seems the "BackupDirectory " value of the
following registry key is corrupted or missing:
HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server\<instance
name>\MSSQLServer (named instance)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer (default
instance)
If it is missing, please right click above Key->New->String Value, change
the name to BackupDirectory, and change it value to the proper path such as:
C:\Program Files\Microsoft SQL Server\MSSQL\backup
NOTE: Using Registry Editor incorrectly can cause serious problems that may
require you to reinstall Windows. Microsoft cannot guarantee that problems
resulting from the incorrect use of Registry Editor can be solved. Use
Registry Editor at your own risk.
256986 Description of the Microsoft Windows Registry
http://support.microsoft.com/?id=256986
Have a nice day!
Best regards,
Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support
Microsoft Global Technical Support Center
Get Secure! - www.microsoft.com/security
=====================================================When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================This posting is provided "AS IS" with no warranties, and confers no rights.
| Thread-Topic: Maintenance Plan Issue
| thread-index: Acg26I1Tyaq8Y40fRC+Uz8AX1JIRtw==| X-WBNR-Posting-Host: 207.46.19.168
| From: =?Utf-8?B?R2VvcmdlIFNjaG5laWRlcg==?=<georgedschneider@.noemail.noemail>
| Subject: Maintenance Plan Issue
| Date: Tue, 4 Dec 2007 18:43:01 -0800
| Lines: 12
| Message-ID: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2992
| Newsgroups: microsoft.public.sqlserver.server
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32053
| NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| X-Tomcat-NG: microsoft.public.sqlserver.server
|
| Sorry for the repost but I had an issue with my alias and had to repost
per
| customer service.
|
| I'm running across a weird issue that I can't figure out. I trying to
create
| a maintenance plan on two of my SQL 2000 Servers. I run throught the
wizard
| and get to the screen to setup the backup job and when I go to select the
| delete files older than option I notice that that this blank. Typically
it
| has dyas, hours, and weeks here. The file extension is blank as well.
Aslo
| the number scroll for number of files does not work correctly down is up.
| Any thought on this. This is my only SQl server I've seen this on. I
have 5
| other SQL servers that work fine when creating a maintenance job but not
on
| these two servers and really need to resolve the issue on these servers.
||||Hello,
How's everything going?
I'm wondering if the suggestion has helped or if you have any further
questions. Please feel free to respond to the newsgroups if you need any
additional help.
Have a nice day!
Best regards,
Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support
Microsoft Global Technical Support Center
Get Secure! - www.microsoft.com/security
=====================================================When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================This posting is provided "AS IS" with no warranties, and confers no rights.
| X-Tomcat-ID: 96426387
| References: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: v-adamqu@.online.microsoft.com (Adams Qu [MSFT])
| Organization: Microsoft
| Date: Wed, 05 Dec 2007 09:22:23 GMT
| Subject: RE: Maintenance Plan Issue
| X-Tomcat-NG: microsoft.public.sqlserver.server
| Message-ID: <p9V2aByNIHA.7908@.TK2MSFTNGHUB02.phx.gbl>
| Newsgroups: microsoft.public.sqlserver.server
| Lines: 81
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32075
| NNTP-Posting-Host: TOMCATIMPORT1 10.201.218.122
|
| Hello,
|
| Thank you for posting here.
|
| Based on the symptom, it seems the "BackupDirectory " value of the
| following registry key is corrupted or missing:
|
| HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server\<instance
| name>\MSSQLServer (named instance)
|
| HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer (default
| instance)
|
| If it is missing, please right click above Key->New->String Value, change
| the name to BackupDirectory, and change it value to the proper path such
as:
|
| C:\Program Files\Microsoft SQL Server\MSSQL\backup
|
| NOTE: Using Registry Editor incorrectly can cause serious problems that
may
| require you to reinstall Windows. Microsoft cannot guarantee that
problems
| resulting from the incorrect use of Registry Editor can be solved. Use
| Registry Editor at your own risk.
|
| 256986 Description of the Microsoft Windows Registry
| http://support.microsoft.com/?id=256986
|
| Have a nice day!
|
| Best regards,
|
| Adams Qu
| MCSE, MCDBA, MCTS
| Microsoft Online Support
|
| Microsoft Global Technical Support Center
|
| Get Secure! - www.microsoft.com/security
| =====================================================| When responding to posts, please "Reply to Group" via your newsreader so
| that others may learn and benefit from your issue.
| =====================================================| This posting is provided "AS IS" with no warranties, and confers no
rights.
|
|
| --
| | Thread-Topic: Maintenance Plan Issue
| | thread-index: Acg26I1Tyaq8Y40fRC+Uz8AX1JIRtw==| | X-WBNR-Posting-Host: 207.46.19.168
| | From: =?Utf-8?B?R2VvcmdlIFNjaG5laWRlcg==?=| <georgedschneider@.noemail.noemail>
| | Subject: Maintenance Plan Issue
| | Date: Tue, 4 Dec 2007 18:43:01 -0800
| | Lines: 12
| | Message-ID: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| | MIME-Version: 1.0
| | Content-Type: text/plain;
| | charset="Utf-8"
| | Content-Transfer-Encoding: 7bit
| | X-Newsreader: Microsoft CDO for Windows 2000
| | Content-Class: urn:content-classes:message
| | Importance: normal
| | Priority: normal
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2992
| | Newsgroups: microsoft.public.sqlserver.server
| | Path: TK2MSFTNGHUB02.phx.gbl
| | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32053
| | NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| | X-Tomcat-NG: microsoft.public.sqlserver.server
| |
| | Sorry for the repost but I had an issue with my alias and had to repost
| per
| | customer service.
| |
| | I'm running across a weird issue that I can't figure out. I trying to
| create
| | a maintenance plan on two of my SQL 2000 Servers. I run throught the
| wizard
| | and get to the screen to setup the backup job and when I go to select
the
| | delete files older than option I notice that that this blank.
Typically
| it
| | has dyas, hours, and weeks here. The file extension is blank as well.
| Aslo
| | the number scroll for number of files does not work correctly down is
up.
|
| | Any thought on this. This is my only SQl server I've seen this on. I
| have 5
| | other SQL servers that work fine when creating a maintenance job but
not
| on
| | these two servers and really need to resolve the issue on these servers.
| |
|
|sql

Maintenance plan issue

I am using Enterprise manager on one server to manage SQL (MSDE) running on
another server. Am I OK so far?
When I create a maintenance plan for all databases on the MSDE server, and
set it for keeping the backup for X days, next the dropdown box which
should, I think, give options of hours, days, etc. is blank. Also, when I
put the ext3ension in as, say bak, save t6he plan then go back into it to
look at its properties, both my schedule and the extension are blank.
Any ideas ? Or, am I wrong to use EM for MSDE '
ThanksAs far as the license issue, I am still confused by when you can and cannot
use MSDE and Enterprise Mangler together. The safest thing is to either:
A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff that
normally runs against MSDE onto a single Standard (soon to be Workgroup)
edition of SQL Server.
B) Use SQL Web Administrator
(2A332CB7F959&displaylang=en" target="_blank">http://www.microsoft.com/downloads/...&displaylang=en).
It's free and it's legal.
Geoff N. Hiten
Microsoft SQL Server MVP
Senior Database Adminstrator
"Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
>I am using Enterprise manager on one server to manage SQL (MSDE) running on
> another server. Am I OK so far?
> When I create a maintenance plan for all databases on the MSDE server, and
> set it for keeping the backup for X days, next the dropdown box which
> should, I think, give options of hours, days, etc. is blank. Also, when I
> put the ext3ension in as, say bak, save t6he plan then go back into it to
> look at its properties, both my schedule and the extension are blank.
> Any ideas ? Or, am I wrong to use EM for MSDE '
> Thanks|||I am not as concerned with licensing as I am with the technical feasibilty o
f
using EM to set up maintenance plans for a machine running MSDE as opposed t
o
full SQL. It seems like it just doesn't work with MSDE and that may be by
design.
"Geoff N. Hiten" wrote:

> As far as the license issue, I am still confused by when you can and canno
t
> use MSDE and Enterprise Mangler together. The safest thing is to either:
> A) Do not use MSDE. Personally, I consolidate all back-end SQL stuff that
> normally runs against MSDE onto a single Standard (soon to be Workgroup)
> edition of SQL Server.
> B) Use SQL Web Administrator
> (C-2A332CB7F959&displaylang=en" target="_blank">http://www.microsoft.com/downloads/...&displaylang=en).
> It's free and it's legal.
> Geoff N. Hiten
> Microsoft SQL Server MVP
> Senior Database Adminstrator
>
> "Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
> news:4EDBBC5E-C589-47E6-AF8B-54FE78F6C510@.microsoft.com...
>
>|||Technically, you can use Enterprise Manager with MSDE. Even with EM, the
wizards may not work correctly with MSDE. The latest Books On-Line contains
much better content on MSDE than the original release BOL. You can download
it here:
http://www.microsoft.com/sql/techin.../2000/books.asp
"Dave Mc" <DaveMc@.discussions.microsoft.com> wrote in message
news:5B0A3223-1555-4532-B012-9BF782154AA6@.microsoft.com...[vbcol=seagreen]
>I am not as concerned with licensing as I am with the technical feasibilty
>of
> using EM to set up maintenance plans for a machine running MSDE as opposed
> to
> full SQL. It seems like it just doesn't work with MSDE and that may be by
> design.
>
> "Geoff N. Hiten" wrote:
>

Maintenance Plan Issue

Sorry for the repost but I had an issue with my alias and had to repost per
customer service.
I'm running across a weird issue that I can't figure out. I trying to creat
e
a maintenance plan on two of my SQL 2000 Servers. I run throught the wizard
and get to the screen to setup the backup job and when I go to select the
delete files older than option I notice that that this blank. Typically it
has dyas, hours, and weeks here. The file extension is blank as well. Aslo
the number scroll for number of files does not work correctly down is up.
Any thought on this. This is my only SQl server I've seen this on. I have
5
other SQL servers that work fine when creating a maintenance job but not on
these two servers and really need to resolve the issue on these servers.Hello,
Thank you for posting here.
Based on the symptom, it seems the "BackupDirectory " value of the
following registry key is corrupted or missing:
HKEY_Local_Machine\Software\Microsoft\Mi
crosoft SQL Server\<instance
name>\MSSQLServer (named instance)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MS
SQLServer\MSSQLServer (default
instance)
If it is missing, please right click above Key->New->String Value, change
the name to BackupDirectory, and change it value to the proper path such as:
C:\Program Files\Microsoft SQL Server\MSSQL\backup
NOTE: Using Registry Editor incorrectly can cause serious problems that may
require you to reinstall Windows. Microsoft cannot guarantee that problems
resulting from the incorrect use of Registry Editor can be solved. Use
Registry Editor at your own risk.
256986 Description of the Microsoft Windows Registry
http://support.microsoft.com/?id=256986
Have a nice day!
Best regards,
Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support
Microsoft Global Technical Support Center
Get Secure! - www.microsoft.com/security
========================================
=============
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
========================================
=============
This posting is provided "AS IS" with no warranties, and confers no rights.
| Thread-Topic: Maintenance Plan Issue
| thread-index: Acg26I1Tyaq8Y40fRC+Uz8AX1JIRtw==
| X-WBNR-Posting-Host: 207.46.19.168
| From: examnotes
<georgedschneider@.noemail.noemail>
| Subject: Maintenance Plan Issue
| Date: Tue, 4 Dec 2007 18:43:01 -0800
| Lines: 12
| Message-ID: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2992
| Newsgroups: microsoft.public.sqlserver.server
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32053
| NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| X-Tomcat-NG: microsoft.public.sqlserver.server
|
| Sorry for the repost but I had an issue with my alias and had to repost
per
| customer service.
|
| I'm running across a weird issue that I can't figure out. I trying to
create
| a maintenance plan on two of my SQL 2000 Servers. I run throught the
wizard
| and get to the screen to setup the backup job and when I go to select the
| delete files older than option I notice that that this blank. Typically
it
| has dyas, hours, and weeks here. The file extension is blank as well.
Aslo
| the number scroll for number of files does not work correctly down is up.
| Any thought on this. This is my only SQl server I've seen this on. I
have 5
| other SQL servers that work fine when creating a maintenance job but not
on
| these two servers and really need to resolve the issue on these servers.
||||Hello,
How's everything going?
I'm wondering if the suggestion has helped or if you have any further
questions. Please feel free to respond to the newsgroups if you need any
additional help.
Have a nice day!
Best regards,
Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support
Microsoft Global Technical Support Center
Get Secure! - www.microsoft.com/security
========================================
=============
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
========================================
=============
This posting is provided "AS IS" with no warranties, and confers no rights.
| X-Tomcat-ID: 96426387
| References: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: v-adamqu@.online.microsoft.com (Adams Qu [MSFT])
| Organization: Microsoft
| Date: Wed, 05 Dec 2007 09:22:23 GMT
| Subject: RE: Maintenance Plan Issue
| X-Tomcat-NG: microsoft.public.sqlserver.server
| Message-ID: <p9V2aByNIHA.7908@.TK2MSFTNGHUB02.phx.gbl>
| Newsgroups: microsoft.public.sqlserver.server
| Lines: 81
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32075
| NNTP-Posting-Host: TOMCATIMPORT1 10.201.218.122
|
| Hello,
|
| Thank you for posting here.
|
| Based on the symptom, it seems the "BackupDirectory " value of the
| following registry key is corrupted or missing:
|
| HKEY_Local_Machine\Software\Microsoft\Mi
crosoft SQL Server\<instance
| name>\MSSQLServer (named instance)
|
| HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MS
SQLServer\MSSQLServer (default
| instance)
|
| If it is missing, please right click above Key->New->String Value, change
| the name to BackupDirectory, and change it value to the proper path such
as:
|
| C:\Program Files\Microsoft SQL Server\MSSQL\backup
|
| NOTE: Using Registry Editor incorrectly can cause serious problems that
may
| require you to reinstall Windows. Microsoft cannot guarantee that
problems
| resulting from the incorrect use of Registry Editor can be solved. Use
| Registry Editor at your own risk.
|
| 256986 Description of the Microsoft Windows Registry
| http://support.microsoft.com/?id=256986
|
| Have a nice day!
|
| Best regards,
|
| Adams Qu
| MCSE, MCDBA, MCTS
| Microsoft Online Support
|
| Microsoft Global Technical Support Center
|
| Get Secure! - www.microsoft.com/security
| ========================================
=============
| When responding to posts, please "Reply to Group" via your newsreader so
| that others may learn and benefit from your issue.
| ========================================
=============
| This posting is provided "AS IS" with no warranties, and confers no
rights.
|
|
| --
| | Thread-Topic: Maintenance Plan Issue
| | thread-index: Acg26I1Tyaq8Y40fRC+Uz8AX1JIRtw==
| | X-WBNR-Posting-Host: 207.46.19.168
| | From: examnotes
| <georgedschneider@.noemail.noemail>
| | Subject: Maintenance Plan Issue
| | Date: Tue, 4 Dec 2007 18:43:01 -0800
| | Lines: 12
| | Message-ID: <468EAE1F-24C3-48EA-A45E-F942359AACC6@.microsoft.com>
| | MIME-Version: 1.0
| | Content-Type: text/plain;
| | charset="Utf-8"
| | Content-Transfer-Encoding: 7bit
| | X-Newsreader: Microsoft CDO for Windows 2000
| | Content-Class: urn:content-classes:message
| | Importance: normal
| | Priority: normal
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2992
| | Newsgroups: microsoft.public.sqlserver.server
| | Path: TK2MSFTNGHUB02.phx.gbl
| | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.server:32053
| | NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| | X-Tomcat-NG: microsoft.public.sqlserver.server
| |
| | Sorry for the repost but I had an issue with my alias and had to repost
| per
| | customer service.
| |
| | I'm running across a weird issue that I can't figure out. I trying to
| create
| | a maintenance plan on two of my SQL 2000 Servers. I run throught the
| wizard
| | and get to the screen to setup the backup job and when I go to select
the
| | delete files older than option I notice that that this blank.
Typically
| it
| | has dyas, hours, and weeks here. The file extension is blank as well.
| Aslo
| | the number scroll for number of files does not work correctly down is
up.
|
| | Any thought on this. This is my only SQl server I've seen this on. I
| have 5
| | other SQL servers that work fine when creating a maintenance job but
not
| on
| | these two servers and really need to resolve the issue on these servers.
| |
|
|