Showing posts with label setup. Show all posts
Showing posts with label setup. Show all posts

Friday, March 30, 2012

Multi SQL Server (2000 & 2005) Problem

Hi All!

I setup MS SQL Server 2005 first and then I setup MS SQL Server 2000 with instance 'Myname' and the I created 2 database in SQL Server 2005 and 2000, When I Write an application in .NET 2005 to connect to MS SQL Server 2005 it ok, but it's not ok in sql Server 2000 and appear the error:

System.Data.SqlClient.SqlException: Snapshot isolation transaction failed accessing database 'TustenaOS' because snapshot isolation is not allowed in this database. Use ALTER DATABASE to allow snapshot isolation.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
at

How to connect to MS SQL Server 2000. Thanks

By "setup" did you mean install? Because it's usually avery bad idea to install a later version, then install a prior version. If that is what you did, I suspect things will never work the way you want them to.

|||

It looks like you are requesting snapshot isolation, and that's not a feature of SQL Server 2000.

Multi Server/Database Nightmare

We have a setup with a web server and multiple databases, and a live, stage, and dev environment. We use SQL Server standard 2005 and use the ASP.NET ReportView control. I have spent countless hours now trying to get this to work and am about to give this up and go back to Crystal.

First I wanted a report that would work from dev to stage to live without modification, so we set up shared data sources on each environment to point to the appropriate database. No problem, I can publish it to each environment and it works, though sometimes I have to go into Report Manager and fix the data source.

Next I wanted to be able to work with multiple databases, identical in structure. For this we did a hidden parameter with the database name and used a formula for the query string. This works pretty well.

Next I wanted to be able to run against multiple database servers from a single web server. This has been nearly impossible. I've read a million posts about this, and nothing seems to work well. I've tried a dynamic connection string, and passing the server in as a parameter, but this doesn't work, because I can't get the credentials set on the ReportViewer.ServerReport, so it doesn't work from dev to stage. You can't programatically change the shared data source - that would make it too easy. Linked servers are not an option.

I guess I need to either publish a copy of the report for each database server, or set up an instance of SQL on the web server for each database server.

Any other reasonable options out there. I just can't imagine my setup is all that unique.

Have you explored the possibility of using Synonyms?

(Even dyanmically creating them when necessary.)

|||Whats a Synonym?

Wednesday, March 28, 2012

Multi server administration broken in SQL Server 2005

Hello,
When I try to setup multiserver administration for SQL Server I
always get the error 'The enlist operation failed (reason:
SQLServerAgent Error: Unable to connect to MSX 'my master server name')
(Microsoft SQL Server, Error 22026). I have a fresh installation of the
two instances (the one who must become the master and the one who must
become target. The sql service and sql server agent accounts are a
domain accounts (both servers sit in the same domain) and have full
administrative rights. I have enabled the tcp and named pipes network
library on both sql servers and applied SP1 on both servers.
Frankly I have tried to get this working from the first CTP until now
and never succeed, either I'm doing something wrong our multiserver
administration does not work at all on Sql server 2005.
Has someone managed to get this working on SQL Server 2005 and if so
how did he get it to work.
To be honest this is the third time I ask this question on this
newsgroup but I have never had a reply with a solution, so I'm tempted
to thing that this is broken on SQL Server 2005. If so I have to start
telling my students that this is one thing which does not work (unless
at least someone reports that it is working for him.
Thx.
Marc Mertensconfiguration for tsx/msx is set (by default) to only allow certified
servers. Google search on "msx2005" and /or security. There is a registry
entry you need to change to allow servers w/o certificates in msx/tsx
configuration.
"Marc Mertens" wrote:

> Hello,
> When I try to setup multiserver administration for SQL Server I
> always get the error 'The enlist operation failed (reason:
> SQLServerAgent Error: Unable to connect to MSX 'my master server name')
> (Microsoft SQL Server, Error 22026). I have a fresh installation of the
> two instances (the one who must become the master and the one who must
> become target. The sql service and sql server agent accounts are a
> domain accounts (both servers sit in the same domain) and have full
> administrative rights. I have enabled the tcp and named pipes network
> library on both sql servers and applied SP1 on both servers.
> Frankly I have tried to get this working from the first CTP until now
> and never succeed, either I'm doing something wrong our multiserver
> administration does not work at all on Sql server 2005.
> Has someone managed to get this working on SQL Server 2005 and if so
> how did he get it to work.
> To be honest this is the third time I ask this question on this
> newsgroup but I have never had a reply with a solution, so I'm tempted
> to thing that this is broken on SQL Server 2005. If so I have to start
> telling my students that this is one thing which does not work (unless
> at least someone reports that it is working for him.
> Thx.
> Marc Mertens
>

Monday, March 26, 2012

Multi Instance Cluster Question

I decided to try and setup a multi instance cluster on my
own and seem to be fairly successful . Its SQL 2000 EE on
Windows Server 2003 EE
Just had 2 questions. When i installed the second
instance, it asked me for a virtual name.. so i gave it
one ..in my case SQL2.. and then was asked for an
instance name so i called it ins2.. Eventually this
second sql server is now called sql2\ins2 and not sql2 as
i had thought it would be.. The first instance which was
a default instance was named as SQL1 . Is this the right
way it should be ? i.e one instance called SQL1 and the
other SQL2\ins2 in my case. I was under the impression
that since its a virtual name i could get them to be
called SQL1 and SQL2
If not, then my next question is..
When i connect to those 2 virtual names from a client, it
seems to connect fine to SQL1 but when i connect to SQL2
\ins2 it fails...with SQL Server does not exist or access
denied. Any reason why ? Thanks
Answer #1.
You can have one default instance and 15 named instances OR 16 named
instances of SQL per cluster. Each named instance will be
VirtualServerName\InstanceName. For consistancy I use only named
instances on a cluster, but that is just a personal thing.
Answer #2.
You may have an older version of MDAC on your client system. I think the
breakover is MDAC 2.6, but I may be wrong. Version 2.6 and higher
understand named instances. Versions before that do not. You can make an
older version connect to a named instance if you create an alias that
includes the port number.
Geoff N. Hiten
Microsoft SQL Server MVP
Senior Database Administrator
Careerbuilder.com
"Ronald" <anonymous@.discussions.microsoft.com> wrote in message
news:520a01c42ca8$dfdc9680$a301280a@.phx.gbl...
> I decided to try and setup a multi instance cluster on my
> own and seem to be fairly successful . Its SQL 2000 EE on
> Windows Server 2003 EE
> Just had 2 questions. When i installed the second
> instance, it asked me for a virtual name.. so i gave it
> one ..in my case SQL2.. and then was asked for an
> instance name so i called it ins2.. Eventually this
> second sql server is now called sql2\ins2 and not sql2 as
> i had thought it would be.. The first instance which was
> a default instance was named as SQL1 . Is this the right
> way it should be ? i.e one instance called SQL1 and the
> other SQL2\ins2 in my case. I was under the impression
> that since its a virtual name i could get them to be
> called SQL1 and SQL2
> If not, then my next question is..
> When i connect to those 2 virtual names from a client, it
> seems to connect fine to SQL1 but when i connect to SQL2
> \ins2 it fails...with SQL Server does not exist or access
> denied. Any reason why ? Thanks

Friday, March 23, 2012

Mulit MDF Files Seperately Restore On SQL Server 2000

Hi there,
I have a question about backup restore. I have setup a database with 5 MDF
file located in different drive.
testdb_data1.MDF
testdb_data2.MDF (in USB drive)
testdb_data3.MDF
testdb_data4.MDF
testdb_data5.MDF
If the MDF file in USB drive fail (say I unplug it and replace with a new
USB drive), is that possible to restore this MDF file only in order to
recover the whole database? I have tried to backup all the MDF files but
fail to restore in this case.
Could anyone give me some hints on this question? Thanks in advance.
KennethAre you backup up the database files from Windows or using SQL Servers BACKUP command?
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl...
> Hi there,
> I have a question about backup restore. I have setup a database with 5 MDF
> file located in different drive.
> testdb_data1.MDF
> testdb_data2.MDF (in USB drive)
> testdb_data3.MDF
> testdb_data4.MDF
> testdb_data5.MDF
> If the MDF file in USB drive fail (say I unplug it and replace with a new
> USB drive), is that possible to restore this MDF file only in order to
> recover the whole database? I have tried to backup all the MDF files but
> fail to restore in this case.
> Could anyone give me some hints on this question? Thanks in advance.
> Kenneth
>|||And are they in same file group? On which version of sql?
"Tibor Karaszi" wrote:
> Are you backup up the database files from Windows or using SQL Servers BACKUP command?
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl...
> > Hi there,
> >
> > I have a question about backup restore. I have setup a database with 5 MDF
> > file located in different drive.
> >
> > testdb_data1.MDF
> > testdb_data2.MDF (in USB drive)
> > testdb_data3.MDF
> > testdb_data4.MDF
> > testdb_data5.MDF
> >
> > If the MDF file in USB drive fail (say I unplug it and replace with a new
> > USB drive), is that possible to restore this MDF file only in order to
> > recover the whole database? I have tried to backup all the MDF files but
> > fail to restore in this case.
> >
> > Could anyone give me some hints on this question? Thanks in advance.
> >
> > Kenneth
> >
> >|||In sql2k, you can restore single file with sql backup/restore. But need to do
log restores to keep data integrity.
"Tibor Karaszi" wrote:
> Are you backup up the database files from Windows or using SQL Servers BACKUP command?
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl...
> > Hi there,
> >
> > I have a question about backup restore. I have setup a database with 5 MDF
> > file located in different drive.
> >
> > testdb_data1.MDF
> > testdb_data2.MDF (in USB drive)
> > testdb_data3.MDF
> > testdb_data4.MDF
> > testdb_data5.MDF
> >
> > If the MDF file in USB drive fail (say I unplug it and replace with a new
> > USB drive), is that possible to restore this MDF file only in order to
> > recover the whole database? I have tried to backup all the MDF files but
> > fail to restore in this case.
> >
> > Could anyone give me some hints on this question? Thanks in advance.
> >
> > Kenneth
> >
> >

Mulit MDF Files Seperately Restore On SQL Server 2000

Hi there,
I have a question about backup restore. I have setup a database with 5 MDF
file located in different drive.
testdb_data1.MDF
testdb_data2.MDF (in USB drive)
testdb_data3.MDF
testdb_data4.MDF
testdb_data5.MDF
If the MDF file in USB drive fail (say I unplug it and replace with a new
USB drive), is that possible to restore this MDF file only in order to
recover the whole database? I have tried to backup all the MDF files but
fail to restore in this case.
Could anyone give me some hints on this question? Thanks in advance.
Kenneth
Are you backup up the database files from Windows or using SQL Servers BACKUP command?
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl...
> Hi there,
> I have a question about backup restore. I have setup a database with 5 MDF
> file located in different drive.
> testdb_data1.MDF
> testdb_data2.MDF (in USB drive)
> testdb_data3.MDF
> testdb_data4.MDF
> testdb_data5.MDF
> If the MDF file in USB drive fail (say I unplug it and replace with a new
> USB drive), is that possible to restore this MDF file only in order to
> recover the whole database? I have tried to backup all the MDF files but
> fail to restore in this case.
> Could anyone give me some hints on this question? Thanks in advance.
> Kenneth
>
|||And are they in same file group? On which version of sql?
"Tibor Karaszi" wrote:
[vbcol=seagreen]
> Are you backup up the database files from Windows or using SQL Servers BACKUP command?
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl...
|||In sql2k, you can restore single file with sql backup/restore. But need to do
log restores to keep data integrity.
"Tibor Karaszi" wrote:
[vbcol=seagreen]
> Are you backup up the database files from Windows or using SQL Servers BACKUP command?
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl...
sql

Mulit MDF Files Seperately Restore On SQL Server 2000

Hi there,
I have a question about backup restore. I have setup a database with 5 MDF
file located in different drive.
testdb_data1.MDF
testdb_data2.MDF (in USB drive)
testdb_data3.MDF
testdb_data4.MDF
testdb_data5.MDF
If the MDF file in USB drive fail (say I unplug it and replace with a new
USB drive), is that possible to restore this MDF file only in order to
recover the whole database? I have tried to backup all the MDF files but
fail to restore in this case.
Could anyone give me some hints on this question? Thanks in advance.
KennethAre you backup up the database files from Windows or using SQL Servers BACKU
P command?
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2MSFTNGP06.phx.gbl..
.
> Hi there,
> I have a question about backup restore. I have setup a database with 5 MDF
> file located in different drive.
> testdb_data1.MDF
> testdb_data2.MDF (in USB drive)
> testdb_data3.MDF
> testdb_data4.MDF
> testdb_data5.MDF
> If the MDF file in USB drive fail (say I unplug it and replace with a new
> USB drive), is that possible to restore this MDF file only in order to
> recover the whole database? I have tried to backup all the MDF files but
> fail to restore in this case.
> Could anyone give me some hints on this question? Thanks in advance.
> Kenneth
>|||And are they in same file group? On which version of sql?
"Tibor Karaszi" wrote:
[vbcol=seagreen]
> Are you backup up the database files from Windows or using SQL Servers BAC
KUP command?
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2M
SFTNGP06.phx.gbl...|||In sql2k, you can restore single file with sql backup/restore. But need to d
o
log restores to keep data integrity.
"Tibor Karaszi" wrote:
[vbcol=seagreen]
> Are you backup up the database files from Windows or using SQL Servers BAC
KUP command?
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "Black" <hoodworld@.hotmail.com> wrote in message news:uTvjY90yHHA.484@.TK2M
SFTNGP06.phx.gbl...

Muliprotocol Encryption with Firewall ?

Hi,
I'm trying to setup a connection between a remote SQL server 2000 and Query
Analyser using an encrypted Multiprotocol connection but because the SQL
server is sitting behind a firewall I'm having trouble finding a way to
connect - is there any way to specify the port that the SQL server listens
on for this protocol rather than the default random assignment ?
Thanks,
Dave.Any reason you can't use SSL ? Just wondering why you are using
multiprotocol as it is really just included in SQL2000 for backwards
compatability.
HTH
Jasper Smith (SQL Server MVP)
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
quote:

> Hi,
> I'm trying to setup a connection between a remote SQL server 2000 and

Query
quote:

> Analyser using an encrypted Multiprotocol connection but because the SQL
> server is sitting behind a firewall I'm having trouble finding a way to
> connect - is there any way to specify the port that the SQL server listens
> on for this protocol rather than the default random assignment ?
> Thanks,
> Dave.
>
|||No - SSL sounds good - what port does that connect on though ?
Thanks,
Dave.
"Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
quote:

> Any reason you can't use SSL ? Just wondering why you are using
> multiprotocol as it is really just included in SQL2000 for backwards
> compatability.
> --
> HTH
> Jasper Smith (SQL Server MVP)
> I support PASS - the definitive, global
> community for SQL Server professionals -
> http://www.sqlpass.org
>
> "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
> Query
listens[QUOTE]
>
|||It works at the SuperSocket Net-Library level so no new ports are required
to be open. You can use TCP/IP, Named Pipes etc as it sits behind them all.
HTH
Jasper Smith (SQL Server MVP)
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
news:ODHODCd4DHA.1428@.TK2MSFTNGP12.phx.gbl...
quote:

> No - SSL sounds good - what port does that connect on though ?
> Thanks,
> Dave.
>
> "Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
> news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
SQL[QUOTE]
to[QUOTE]
> listens
>
|||Thanks !
"Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
news:uJhhgAe4DHA.3436@.tk2msftngp13.phx.gbl...
quote:

> It works at the SuperSocket Net-Library level so no new ports are required
> to be open. You can use TCP/IP, Named Pipes etc as it sits behind them

all.
quote:

> --
> HTH
> Jasper Smith (SQL Server MVP)
> I support PASS - the definitive, global
> community for SQL Server professionals -
> http://www.sqlpass.org
>
> "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> news:ODHODCd4DHA.1428@.TK2MSFTNGP12.phx.gbl...
and[QUOTE]
> SQL
> to
>

Muliprotocol Encryption with Firewall ?

Hi,
I'm trying to setup a connection between a remote SQL server 2000 and Query
Analyser using an encrypted Multiprotocol connection but because the SQL
server is sitting behind a firewall I'm having trouble finding a way to
connect - is there any way to specify the port that the SQL server listens
on for this protocol rather than the default random assignment ?
Thanks,
Dave.Any reason you can't use SSL ? Just wondering why you are using
multiprotocol as it is really just included in SQL2000 for backwards
compatability.
--
HTH
Jasper Smith (SQL Server MVP)
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
> Hi,
> I'm trying to setup a connection between a remote SQL server 2000 and
Query
> Analyser using an encrypted Multiprotocol connection but because the SQL
> server is sitting behind a firewall I'm having trouble finding a way to
> connect - is there any way to specify the port that the SQL server listens
> on for this protocol rather than the default random assignment ?
> Thanks,
> Dave.
>|||No - SSL sounds good - what port does that connect on though ?
Thanks,
Dave.
"Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
> Any reason you can't use SSL ? Just wondering why you are using
> multiprotocol as it is really just included in SQL2000 for backwards
> compatability.
> --
> HTH
> Jasper Smith (SQL Server MVP)
> I support PASS - the definitive, global
> community for SQL Server professionals -
> http://www.sqlpass.org
>
> "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
> > Hi,
> >
> > I'm trying to setup a connection between a remote SQL server 2000 and
> Query
> > Analyser using an encrypted Multiprotocol connection but because the SQL
> > server is sitting behind a firewall I'm having trouble finding a way to
> > connect - is there any way to specify the port that the SQL server
listens
> > on for this protocol rather than the default random assignment ?
> >
> > Thanks,
> >
> > Dave.
> >
> >
>|||It works at the SuperSocket Net-Library level so no new ports are required
to be open. You can use TCP/IP, Named Pipes etc as it sits behind them all.
--
HTH
Jasper Smith (SQL Server MVP)
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
news:ODHODCd4DHA.1428@.TK2MSFTNGP12.phx.gbl...
> No - SSL sounds good - what port does that connect on though ?
> Thanks,
> Dave.
>
> "Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
> news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
> > Any reason you can't use SSL ? Just wondering why you are using
> > multiprotocol as it is really just included in SQL2000 for backwards
> > compatability.
> >
> > --
> > HTH
> >
> > Jasper Smith (SQL Server MVP)
> >
> > I support PASS - the definitive, global
> > community for SQL Server professionals -
> > http://www.sqlpass.org
> >
> >
> > "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> > news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
> > > Hi,
> > >
> > > I'm trying to setup a connection between a remote SQL server 2000 and
> > Query
> > > Analyser using an encrypted Multiprotocol connection but because the
SQL
> > > server is sitting behind a firewall I'm having trouble finding a way
to
> > > connect - is there any way to specify the port that the SQL server
> listens
> > > on for this protocol rather than the default random assignment ?
> > >
> > > Thanks,
> > >
> > > Dave.
> > >
> > >
> >
> >
>|||Thanks !
"Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
news:uJhhgAe4DHA.3436@.tk2msftngp13.phx.gbl...
> It works at the SuperSocket Net-Library level so no new ports are required
> to be open. You can use TCP/IP, Named Pipes etc as it sits behind them
all.
> --
> HTH
> Jasper Smith (SQL Server MVP)
> I support PASS - the definitive, global
> community for SQL Server professionals -
> http://www.sqlpass.org
>
> "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> news:ODHODCd4DHA.1428@.TK2MSFTNGP12.phx.gbl...
> > No - SSL sounds good - what port does that connect on though ?
> >
> > Thanks,
> >
> > Dave.
> >
> >
> > "Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
> > news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
> > > Any reason you can't use SSL ? Just wondering why you are using
> > > multiprotocol as it is really just included in SQL2000 for backwards
> > > compatability.
> > >
> > > --
> > > HTH
> > >
> > > Jasper Smith (SQL Server MVP)
> > >
> > > I support PASS - the definitive, global
> > > community for SQL Server professionals -
> > > http://www.sqlpass.org
> > >
> > >
> > > "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> > > news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
> > > > Hi,
> > > >
> > > > I'm trying to setup a connection between a remote SQL server 2000
and
> > > Query
> > > > Analyser using an encrypted Multiprotocol connection but because the
> SQL
> > > > server is sitting behind a firewall I'm having trouble finding a way
> to
> > > > connect - is there any way to specify the port that the SQL server
> > listens
> > > > on for this protocol rather than the default random assignment ?
> > > >
> > > > Thanks,
> > > >
> > > > Dave.
> > > >
> > > >
> > >
> > >
> >
> >
>

Muliprotocol Encryption with Firewall ?

Hi,
I'm trying to setup a connection between a remote SQL server 2000 and Query
Analyser using an encrypted Multiprotocol connection but because the SQL
server is sitting behind a firewall I'm having trouble finding a way to
connect - is there any way to specify the port that the SQL server listens
on for this protocol rather than the default random assignment ?
Thanks,
Dave.Any reason you can't use SSL ? Just wondering why you are using
multiprotocol as it is really just included in SQL2000 for backwards
compatability.
HTH
Jasper Smith (SQL Server MVP)
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
quote:

> Hi,
> I'm trying to setup a connection between a remote SQL server 2000 and

Query
quote:

> Analyser using an encrypted Multiprotocol connection but because the SQL
> server is sitting behind a firewall I'm having trouble finding a way to
> connect - is there any way to specify the port that the SQL server listens
> on for this protocol rather than the default random assignment ?
> Thanks,
> Dave.
>
|||No - SSL sounds good - what port does that connect on though ?
Thanks,
Dave.
"Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
quote:

> Any reason you can't use SSL ? Just wondering why you are using
> multiprotocol as it is really just included in SQL2000 for backwards
> compatability.
> --
> HTH
> Jasper Smith (SQL Server MVP)
> I support PASS - the definitive, global
> community for SQL Server professionals -
> http://www.sqlpass.org
>
> "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> news:epWo4Vc4DHA.2168@.TK2MSFTNGP12.phx.gbl...
> Query
listens[QUOTE]
>
|||It works at the SuperSocket Net-Library level so no new ports are required
to be open. You can use TCP/IP, Named Pipes etc as it sits behind them all.
HTH
Jasper Smith (SQL Server MVP)
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
news:ODHODCd4DHA.1428@.TK2MSFTNGP12.phx.gbl...
quote:

> No - SSL sounds good - what port does that connect on though ?
> Thanks,
> Dave.
>
> "Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
> news:#GyTNnc4DHA.876@.TK2MSFTNGP10.phx.gbl...
SQL[QUOTE]
to[QUOTE]
> listens
>
|||Thanks !
"Jasper Smith" <jasper_smith9@.hotmail.com> wrote in message
news:uJhhgAe4DHA.3436@.tk2msftngp13.phx.gbl...
quote:

> It works at the SuperSocket Net-Library level so no new ports are required
> to be open. You can use TCP/IP, Named Pipes etc as it sits behind them

all.
quote:

> --
> HTH
> Jasper Smith (SQL Server MVP)
> I support PASS - the definitive, global
> community for SQL Server professionals -
> http://www.sqlpass.org
>
> "Dave LLoyd" <dlloyd2000@.hotmasl.com> wrote in message
> news:ODHODCd4DHA.1428@.TK2MSFTNGP12.phx.gbl...
and[QUOTE]
> SQL
> to
>
|||Yes. You need to make a change in the registry on the SQL Server in order
to do this.
See the following kb for step by step example:
164667 INF: Replication Setup Over a Firewall
http://support.microsoft.com/?id=164667
The preferred method would be using SSL.
324777 Support WebCast: Microsoft SQL Server 2000: How to Configure SSL
http://support.microsoft.com/?id=324777
Thanks,
Kevin McDonnell
Microsoft Corporation
This posting is provided AS IS with no warranties, and confers no rights.

Wednesday, March 21, 2012

MSSQLServerOLAPSerice will not start.

I setup a MSSQL 2005 Cluster running on top of Virtual Server 2005. Everthing was running fine until this morning, when suddenly Analysis Services failed to start on the Cluster. When I looked in the Event Log I see the following:

Source: MSSQLServerOLAPService
Category: (289)
Type: Error
Event ID: 0

Description:
The service cannot be started: The DOM parser failed to load and parse the stream. URL:'' Reason: 'A document must contain exactly one root element.

' Source:''. File position: 0. Line: 1. The DOM parser failed to load and parse the file '\\?\N:\Microsoft SQL Server\MSSQL.2\OLAP\Data\master.vmp'.

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

Any idea on what I can do to resolve this problem.

Thanks.

Most likely you data became corrupted. If you can reproduce the scenario you should contact product support services to troubleshoot this problem.

To get Analysis Server to start again you delete all the files in "%AS installation folder%\data" folder.

You need to restore you databases you've backed up earlier. Alternatively you can re-create and re-process all the cubes and all dimensions you had.

Edward.
--
This posting is provided "AS IS" with no warranties, and confers no rights.

|||Thanks for the reply. I ended up simply deleting and reinstalling the service.

Friday, March 9, 2012

MSSQL2K5 Install Path

Hi,

How can I make MSSQL2K5 setup install everything in the install path I have
choosen - it keeps installing some files in %SystemRoot% ?

Thanks,

JMJean-Marc Blaise (nobody@.nowhere.com) writes:

Quote:

Originally Posted by

How can I make MSSQL2K5 setup install everything in the install path I
have choosen - it keeps installing some files in %SystemRoot% ?


If you just choose an alternate location at installation time, it's only
a minor part of the files that are relocated. Something like 1.6 GB ends
up on the system disk if you install everything.

If you change the registry value
HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/ProgramFilesDir
you can force quite a lot to a second disk.

You still get some files in %SystemRoot%. As I recall, the main bulk of
this ends up in the Installer directory. I think you can change some
registry setting to have the Installer directory elsewhere, but I would
recommend that you think twice before you make this step. On a new
machine it may be less of an issue, but if you already have stuff there,
you may mess up other programs.

SP1 takes an even heavier toll on the Installer directory.

--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx|||Hi Erland,

I will try to relocate ProgramFilesDir registry to install MSSQL2K5.

Great thanks for your explanations,

JM

"Erland Sommarskog" <esquel@.sommarskog.sea crit dans le message de
news:Xns982DF0F452EC6Yazorman@.127.0.0.1...

Quote:

Originally Posted by

Jean-Marc Blaise (nobody@.nowhere.com) writes:

Quote:

Originally Posted by

How can I make MSSQL2K5 setup install everything in the install path I
have choosen - it keeps installing some files in %SystemRoot% ?


>
If you just choose an alternate location at installation time, it's only
a minor part of the files that are relocated. Something like 1.6 GB ends
up on the system disk if you install everything.
>
If you change the registry value
>


HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/ProgramFilesDir

Quote:

Originally Posted by

you can force quite a lot to a second disk.
>
You still get some files in %SystemRoot%. As I recall, the main bulk of
this ends up in the Installer directory. I think you can change some
registry setting to have the Installer directory elsewhere, but I would
recommend that you think twice before you make this step. On a new
machine it may be less of an issue, but if you already have stuff there,
you may mess up other programs.
>
SP1 takes an even heavier toll on the Installer directory.
>
>
--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
>
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx

|||Hi Erland,

The trick to change the registry value of ProgramFilesDir cannot work
because it breaks Outlook Express. In fact in the registries, you find hard
coded Program Files for programs as well as %ProgramFiles%. So I used some
tool to repartition my disk ...

I find the setup pretty uncomprehensible, you don't know exactly despite the
Disk Cost how much you will install in the system drive, and the path you
select. I encountered twice setup problems (abort or willing to report to
microsoft)... Basically, it seems to me I installed about 800 Mb on both
drives, not selecting Analysis Services.

Then, installing SP1 ... took me from the system drive about 1 Gb, but
moreover that annoys me is the time it takes to apply SP1: about 45 minutes.
I am very surprised and disappointed about all these disagrements, and I
find even Oracle has made much progress on there installation gui (using
Oracle 10gR2).

Do you have any comments on my feelings ?

Regards,

Jean-Marc

"Erland Sommarskog" <esquel@.sommarskog.sea crit dans le message de
news:Xns982DF0F452EC6Yazorman@.127.0.0.1...

Quote:

Originally Posted by

Jean-Marc Blaise (nobody@.nowhere.com) writes:

Quote:

Originally Posted by

How can I make MSSQL2K5 setup install everything in the install path I
have choosen - it keeps installing some files in %SystemRoot% ?


>
If you just choose an alternate location at installation time, it's only
a minor part of the files that are relocated. Something like 1.6 GB ends
up on the system disk if you install everything.
>
If you change the registry value
>


HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/ProgramFilesDir

Quote:

Originally Posted by

you can force quite a lot to a second disk.
>
You still get some files in %SystemRoot%. As I recall, the main bulk of
this ends up in the Installer directory. I think you can change some
registry setting to have the Installer directory elsewhere, but I would
recommend that you think twice before you make this step. On a new
machine it may be less of an issue, but if you already have stuff there,
you may mess up other programs.
>
SP1 takes an even heavier toll on the Installer directory.
>
>
--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
>
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx

|||Jean-Marc Blaise (nobody@.nowhere.com) writes:

Quote:

Originally Posted by

The trick to change the registry value of ProgramFilesDir cannot work
because it breaks Outlook Express. In fact in the registries, you find
hard coded Program Files for programs as well as %ProgramFiles%. So I
used some tool to repartition my disk ...


Sorry, I forgot to say that I know if it is supported to change
ProgramFilesDir. When I have tried this for SQL 2005 installations, it
has been virtual machines with very little on.

Still, I'm surprised that it would break Outlook Express. My hinch
is that ProgramFilesDir mainly serves as a default for new installations.
Once something has been installed, it should not be affected by
a change in ProgramFilesDir. But I am not in expert on Windows, so I
could be wrong on that point. (And I'm too coward to try the experiment
on my real machine. :-)

Quote:

Originally Posted by

I find the setup pretty uncomprehensible, you don't know exactly despite
the Disk Cost how much you will install in the system drive, and the
path you select. I encountered twice setup problems (abort or willing to
report to microsoft)... Basically, it seems to me I installed about 800
Mb on both drives, not selecting Analysis Services.


I have shoehorned in SQL 2005 on virtual machines with low disk space,
and I don't recall any major mismatch with Disk Cost. But it goes without
saying that if Disk Cost says that you will have one megabyte left, you
should do some cleanup just in case.

Quote:

Originally Posted by

Then, installing SP1 ... took me from the system drive about 1 Gb, but
moreover that annoys me is the time it takes to apply SP1: about 45
minutes. I am very surprised and disappointed about all these
disagrements, and I find even Oracle has made much progress on there
installation gui (using Oracle 10gR2).


Yes, the SP1 takes up too much space on the system disk. It saves a lot
of install packages, but most packages are saved twice. Add to that a
PatchCache. Some of this stuff has to do with roiling back a service
pack, but you cannot roll back SP1.

I have a feeling that the SP1 setup was a bit rashed, because they
wanted to get Database Mirroring out of the door. There are a couple
bugs filed on the SP1 setup (including more than one from yours truly),
and I think several have been resolved as "looking into fix for SP2".

In any case, it is quite clear that if you are of the school that
the system drive should be small, you should re-think, because that is
not Microsoft's approach, but it appears they will continute to cram
things into Windows/Installer, and force thing into ProgramFilesDir.

--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx|||Hi Erland,

No problem for the ProgramFilesDir, I just keep posted so that people are
aware of some side effects :-).

Regarding the disk cost, it's confusing, let me tell why: you choose for
example Client Components / and the first sub choice. This gives you about
47 Mb. Then, going to Disk Cost, it says: 467 Mb ! Yeah, about 10 times. I
figure out that this is linked to the temporary files, msi file saved ...
And when you install only this, it seems to install many things: Workstation
Components for instance (at least it sets up some things related to this
area); the setup even tells "Removing applications", and you see your disk
storage decrease...

I know that the installer has some habit to copy twice (sometimes 3 times)
the package: I experimented one time the impossibility to remove anything
from my computer and had to play with registries to get back control of my C
drive. In not so old times, 5 Gb were fine on C: drive, now you should use
at least 20 gb to be safe. Unfortunately, on my labtop, I cannot reformat,
so am unable to install MSSQL2K5, and keep the old MSSQL2K.

Regards,

JM

"Erland Sommarskog" <esquel@.sommarskog.sea crit dans le message de
news:Xns9832D1FC7B328Yazorman@.127.0.0.1...

Quote:

Originally Posted by

Jean-Marc Blaise (nobody@.nowhere.com) writes:

Quote:

Originally Posted by

The trick to change the registry value of ProgramFilesDir cannot work
because it breaks Outlook Express. In fact in the registries, you find
hard coded Program Files for programs as well as %ProgramFiles%. So I
used some tool to repartition my disk ...


>
Sorry, I forgot to say that I know if it is supported to change
ProgramFilesDir. When I have tried this for SQL 2005 installations, it
has been virtual machines with very little on.
>
Still, I'm surprised that it would break Outlook Express. My hinch
is that ProgramFilesDir mainly serves as a default for new installations.
Once something has been installed, it should not be affected by
a change in ProgramFilesDir. But I am not in expert on Windows, so I
could be wrong on that point. (And I'm too coward to try the experiment
on my real machine. :-)
>

Quote:

Originally Posted by

I find the setup pretty uncomprehensible, you don't know exactly despite
the Disk Cost how much you will install in the system drive, and the
path you select. I encountered twice setup problems (abort or willing to
report to microsoft)... Basically, it seems to me I installed about 800
Mb on both drives, not selecting Analysis Services.


>
I have shoehorned in SQL 2005 on virtual machines with low disk space,
and I don't recall any major mismatch with Disk Cost. But it goes without
saying that if Disk Cost says that you will have one megabyte left, you
should do some cleanup just in case.
>

Quote:

Originally Posted by

Then, installing SP1 ... took me from the system drive about 1 Gb, but
moreover that annoys me is the time it takes to apply SP1: about 45
minutes. I am very surprised and disappointed about all these
disagrements, and I find even Oracle has made much progress on there
installation gui (using Oracle 10gR2).


>
Yes, the SP1 takes up too much space on the system disk. It saves a lot
of install packages, but most packages are saved twice. Add to that a
PatchCache. Some of this stuff has to do with roiling back a service
pack, but you cannot roll back SP1.
>
I have a feeling that the SP1 setup was a bit rashed, because they
wanted to get Database Mirroring out of the door. There are a couple
bugs filed on the SP1 setup (including more than one from yours truly),
and I think several have been resolved as "looking into fix for SP2".
>
In any case, it is quite clear that if you are of the school that
the system drive should be small, you should re-think, because that is
not Microsoft's approach, but it appears they will continute to cram
things into Windows/Installer, and force thing into ProgramFilesDir.
>
--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
>
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx

|||Jean-Marc Blaise (nobody@.nowhere.com) writes:

Quote:

Originally Posted by

Regarding the disk cost, it's confusing, let me tell why: you choose for
example Client Components / and the first sub choice. This gives you about
47 Mb. Then, going to Disk Cost, it says: 467 Mb ! Yeah, about 10 times. I
figure out that this is linked to the temporary files, msi file saved ...


Yeah, that part which says "this compoent requires xx MB on your hard
disk" is about useless. You have to go to Disk Cost to see the actual
effect.

I guess the basic problem is that the cost for a feature depends very
much on which other features you install. For instance, if I go to
Add/Remove Programs, it tells me that Microsoft Visual Studio Team
Suite for Database Professionals - ENU (a.k.a DataDude) takes up 799 MB.
Maybe that would be true, if DataDude was the only Visual Studio thing
I had installed, but it's just an add on, which I have installed
separately. (DataDude is a VS component that is still in beta.)

Quote:

Originally Posted by

In not so old times, 5 Gb were fine on C: drive, now you should use
at least 20 gb to be safe. Unfortunately, on my labtop, I cannot reformat,
so am unable to install MSSQL2K5, and keep the old MSSQL2K.


If unpatitioned disk to spare, keep in mind that you can add a partition
as a mount point, so you could move for instance C:\Windows\Installer
out from the system disk.
--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx

MSSQL2005 SP1 setup

I have an Evaluation version of Enterprise edition MSSQL2005 for development. I tried to install MSSQL2005 sp1 and it is necessary to upgrade to the release version of SQL2005. Currently, I just got the release CD on hand, how can I upgrade the evaluation version to release version except uninstalling the eval and install with the release edition? Thanks in advance

You can "Upgrade" from Eval to the release version by launching setup from the CD. Setup will find the existing eval instance inform you that you can upgrade the instance.

jeff.

Wednesday, March 7, 2012

MSSQL/Server setup/running issue/question...

i have a client with a windows 2003 server with 4 processors & 32 GB RAM, then MSSQL 2000 SP3. our software seems to run fine on it until the Task Manager shows the MSSQL using 1.7GB of RAM. At this point the whole system seems to slow down to a snails pace. Any ideas as to why 1.7GB and it never goes over that amount no matter how much activity i run on it. Restart mssql and everything seems to run good up until we see the 1.7GB again.Quite simple: The server is installed with 32-bit edition of the OS and SQL Server 2000. You can increase the memory usage of SQL server to approx 2.7GB by using the /3GB switch in boot.ini, or use AWE to use memory above 4GB, but I won't recommend it since it works more or less like himem.sys and emm386 in the old days. What you should do is really reinstall the server, using 64-bit edition of both the OS and SQL Server software. Unless there is some piece of software or hardware which is not supported in the 64-bit edition.

Saturday, February 25, 2012

MSSQL Server 2000 error Setup fail to configure server

I have searched and could not find an answer for this one I read log and it said
Starting Service ...

SQL_Latin1_General_CP1_CI_AS

-m -Q -T4022 -T3659

Connecting to Server ...

driver={sql server};server=KENSHIN;UID=sa;PWD=;database=master

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

driver={sql server};server=KENSHIN;UID=sa;PWD=;database=master

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

driver={sql server};server=KENSHIN;UID=sa;PWD=;database=master

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

SQL Server configuration failed.

how do I fix this?Seems that WINS or DNS does not work properly. Can you ping the KENSHIN name in the command prompt ?

HTH, Jens K. Suessmeyer.

http://www.sqlserver2005.de
|||Yes, I can ping KENSHIN in the command prompt.|||

I'm having the same issue as Dante. I have this issue on a Windows XP SP2 - based system. I didn't think of trying to ping the server name, since I'm trying to set up the instance on a local machine.

One thing that I also found, was that there were no OBDC drivers listed in my Data Source Administrator console. Now, I watched as the setup program stated that it was installing MDAC components, so what's correlation?

|||I am having the same issue.|||

I'm having the same issue as well. We've tried reinstalling MDAC, re-SP4ing and now just detached the dbs and reinstalling SQL Server 2000.

I get the same error messages. Is there a resolution to this?

|||

How are you connecting to the DB on the production server? DSN, DSN-less? If DSN, is the DSN setup correctly on the live server? If DSN-less, is the driver present?

Also check if there is any anti-virus & anti-spyware is installed on the machine that will have this negative effect of SQL installation, so you might try stopping them until the SQL installation is finished.

|||i fixed it already well i never installed MSSQL dont need it anymore i have my db's up and running with out it

MSSQL Server 2000 error Setup fail to configure server

I have searched and could not find an answer for this one I read log and it said
Starting Service ...

SQL_Latin1_General_CP1_CI_AS

-m -Q -T4022 -T3659

Connecting to Server ...

driver={sql server};server=KENSHIN;UID=sa;PWD=;database=master

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

driver={sql server};server=KENSHIN;UID=sa;PWD=;database=master

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

driver={sql server};server=KENSHIN;UID=sa;PWD=;database=master

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

SQL Server configuration failed.

how do I fix this?Seems that WINS or DNS does not work properly. Can you ping the KENSHIN name in the command prompt ?

HTH, Jens K. Suessmeyer.

http://www.sqlserver2005.de
|||Yes, I can ping KENSHIN in the command prompt.|||

I'm having the same issue as Dante. I have this issue on a Windows XP SP2 - based system. I didn't think of trying to ping the server name, since I'm trying to set up the instance on a local machine.

One thing that I also found, was that there were no OBDC drivers listed in my Data Source Administrator console. Now, I watched as the setup program stated that it was installing MDAC components, so what's correlation?

|||I am having the same issue.|||

I'm having the same issue as well. We've tried reinstalling MDAC, re-SP4ing and now just detached the dbs and reinstalling SQL Server 2000.

I get the same error messages. Is there a resolution to this?

|||

How are you connecting to the DB on the production server? DSN, DSN-less? If DSN, is the DSN setup correctly on the live server? If DSN-less, is the driver present?

Also check if there is any anti-virus & anti-spyware is installed on the machine that will have this negative effect of SQL installation, so you might try stopping them until the SQL installation is finished.

|||i fixed it already well i never installed MSSQL dont need it anymore i have my db's up and running with out it