Acces An Remote OLAP Server

Jul 22, 2005

I try to access an OLAP Server from a remote compute, using ADO MD Library with following string conection :
"Datasource=SERVNAME; Provider=msolap; Initial Catalog=FoodMart 2000;"
I recive the following error code: -2147467259 (0x80004005), "Unspecified error"
Can sombody help me

View 4 Replies


ADVERTISEMENT

Remote Acces To Sql Server

Dec 14, 2001

Hi

I would like to acces a SQL Server that is on a web server.

I want to to this to be able to control the sql server and database to create table, trigger...

For "MySql" i use DBTools to acces my database via the web, is there something i can use like BdTools to acces the Sql Server 2000 database

I'm new to SQL so can somebody can tell me what to do!

Thanks

View 4 Replies View Related

Copy An Olap Database To A Remote Server Using SSIS

May 2, 2008

How to add a task to copy an OLAP database to a remote Sql server in control flow using SSIS 2005? This OLAP database is existed in the remote server and I just want to replace the existing one with the one just been updated in the SSIS package and the last task in the package is to copy the updated OLAP database and replace the one at the remote server. Hopfully during the copy and paste process it will not screw up the reports that are using the OLAP cubes at the remote server as the report data source. Thanks.

View 6 Replies View Related

SQL DTS Package To Process A Remote OLAP Database

Jul 23, 2005

When I start creating a new DTS Package and I choose the Analysis ProcessingTask icon, I only have the option of working with the local MicrosoftAnalysis Server.How can I choose a remote server's Analysis Server in order to process itsdatabase?Thank you

View 1 Replies View Related

Acces To SQL Server On Another Domain

Feb 27, 2008

I've got a website with authentication mode "forms". Now I need access to the database to authenticate the user. The SQL Server is located in another domain than IIS.I don't know how to establish a trusted connection with the SQL Server. How can I establish this?

View 2 Replies View Related

Acces Data Of A Linked Server

Apr 30, 2007

Hi, I'm using Sql 2000 and I have a linked server called SRVSRV.
The link works because I can list all tables.

How can I access the data i'm trying:


SELECT * FROM [SRVSRV].Database.Table

And it don't works.
What am i doing bad?
Thanks.

View 4 Replies View Related

Convert A Ms Acces (mdb) Database To SQL Server

Feb 19, 2008

Hi there.

How can i convert a Ms Access Database file (.mdb) to an SQL Server 2005 Database ????

is there any tools ?? or what ever can help me .

Thank you.

View 2 Replies View Related

LAN / WLAN Acces 2 SQL Server From Win CE Device

Oct 9, 2007

After an internet search I have some questions regarding SQL Server access from a mobile device via LAN / WLAN.

I will write a application in C that write data to an SQL server. First if I correct that's not possible to acces an SQL server via ODBC on Windows CE? What alternatives are there?



Stef

View 1 Replies View Related

Online Get Data From MS Acces To SQL Server

Mar 28, 2008



Hi All,
I have MS Access 97 database and SQL Server 2005 Express Edition (or SQL Server 2005 Developer Edition).
I want online get data from MS Access and upload to SQL Server.

Help me, which way I select ?
Regards

View 3 Replies View Related

Multi-User Acces Using SQL Server Express

Mar 27, 2008

I am new to SQL Server but have been using Access to provide Multi-User acces to a central data store. We are evaluating the replacement of Access with SQL Server. With Access we don't need any special installation; I believe that the Jet Database Engine installed locally on each user's PC allows them to work with this in a disconnected manner; we use ADO.net 2.0 with VB.net 2005.

If each user has a locally installed SQL Server Express can they all attach to a database that resides on a shared network location?

In another post on the Forum I see the following regarding multi-user access:
Our application You will need to pick a central computer that everyone will be using the access the data and attach the file to the parent instance of SQL Express on that comuter, giving it a name that you can use to access it. Then you will need to modify your connection string to connect to the named database on the central server...

Can multiple locally installed SQL Server Express instances attach to a single data store that resides on a shared network location?

If not, what permissions do I need to create a parent instance of SQL Server Express?

Thank you for helping me understand how to implement our solution.

JudiR

View 13 Replies View Related

Connection From Acces 2003 To SQL Server 2005

Dec 10, 2006

What is the fastet connection between access 2003 to sql server 2005?

View 2 Replies View Related

Why Can't I Acces My SQL Server 2005 Db After Working With Visual Web Developer?

Apr 28, 2008

I am developing an asp.net app using visual web developer. I am using a sql server 2005 db for the back end. I have learned that I have to restart my machine if I want to work with the db in SQL Server 2005 Express after working with it in Visual Web Developer.

I am wondering why this is. I am assuming that the db is locked when it is used with VWD. Is this correct? Am I refering to it's status of "locked" correctly? Should I call this something else?

-thanks to anyone that can help

View 3 Replies View Related

OLAP Services: Automating Archival/Restore Of OLAP Databases

Sep 19, 2000

Hello All,

Our OLAP environment involves an ETL/Data Warehouse/Data Mart server and a cube publisher server.
We would like to learn how to automate the Archival/Restore of OLAP databases. We are currently doing
it manually though OLAP Manager. Any help would be appreciated. Thanks. James.

--
James E. Bothamley
Senior Database Administrator
Dave & Buster's, Inc.
2481 Manana
Dallas, TX 75220

Work
Phone (214) 904-2296
email jbothaml@DaveAndBusters.Com

"Once in a while you can get shown the light
in the strangest of places if you look at it right"

JG 1942-1995 RIP

View 1 Replies View Related

How To Repair A Corrupted OLAP Database? (was Olap!:)

Jun 12, 2007

How to repair a corrupted OLAP database?

View 2 Replies View Related

Remote Access Server Configuration Option And Remote Query Timeout?

Jun 2, 2015

- When I disable "allow remote connections to this server" from server properties>connection page, I can still remotely connect to the server from SSMS...so what is the impact of enable/disabling it?

- what is the impact of changing the remote query timeout (on the same page) from default value?

View 4 Replies View Related

Can't Acces

Oct 26, 2005

my colleague is using visual studio (VB) and making windows applications. we used same connection string but i can't connect to the sql server.

i am using visual studio(2003) .net(C#) and making web applications. this is the code.

System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection ();
// TODO: Modify the connection string and include any
// additional required properties for your database.
//conn.ConnectionString = "integrated security=SSPI;data source=cerebrum;persist security info=False;initial catalog=dals";
conn.ConnectionString="Server=cerebrum;Initial Catalog=dals;User Id=sa;";
try
{
conn.Open();
// Insert code to process data.
Label1.Text="Connection successful";
}
catch (Exception ex)
{
throw ex;
}
finally
{
conn.Close();
}

and i'm getting this error
SQL Server does not exist or access denied.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: SQL Server does not exist or access denied.

Source Error:


Line 91: throw ex;
Line 92: }
Line 93: finally

View 4 Replies View Related

Acces To SQL Guidence?

Feb 3, 2007

OK I have been trying on my own to move from Access to SQL express/Developer. I have not found much in the way of guidence. Any suggestions? I would rank myself as fairly advanced with Access but just a newby to the SQL products... I keep blasting into walls and issues in the SQL world and would rather learn from someone elses' hardship rather than re-invent what has been undoubtably been already discovered.

I do fairly advanced reports and Large imports, Hence the need for developer rather than express, since the express import facility is hopelessly crippled. Even the developer SSIS is not well doccumented and seems pretty buggy and hard to use, even with the wizzards, As for reports.... well I'm expecting that to be a fairly had road to climb also...

View 3 Replies View Related

OLAP Server

Apr 15, 1999

Anyone managed to get the OLAP server installed onto SQL7 Desktop?

I'm running it on Win98 and the installation only offers the Client and sample applications.

Obviously the client won't connect as there's no server to connect to.

The documentation on what does/doesn't run in Desktop version doesn't mention OLAP server.

Please email reply to me at RussLewis@msn.com

Thanks

View 1 Replies View Related

Olap Server

Mar 16, 2006

Hi everyone, Sql express support olap server?, because I try it to make an a Pivot table in Ms Excel, but i can't, then Sql server have this feature?thx.p.d: sorry but my english :P

View 3 Replies View Related

Acces Return Value From A StoredProcedure - How?

Apr 6, 2008

hi
i have a stored procedure witch Returns 0 or 1 dependig if exists some rows
how can i acces that value in code behind? i tryied all, command.ExecuteScalar(), command.ExecuteNonQuery() but none works
i need something like if(command.GetReurnValue) .... else ....
thanks in advance

View 3 Replies View Related

SQL/Acces Record Locking

Dec 9, 2005

I am running an Access 2000 front end and MS SQL2000 as a backend and I am having problems with record locking.

I have just found out that If you use ODBC then Access acts as if No Locks are set. In an ideal world I need the record to be locked by a user as soon as they move onto it. If not as soon as they start editing it?

Cheers.

View 2 Replies View Related

How Do I Programatically Acces A Database With A '-' In The Name?

Jul 23, 2005

use this-is-a-stupid-namereturns an errorFor that matterselect *from this-is-a-stupid-name.dbo.anytablereturns an errorI've tried single quoted, double quotes, escaping. In the SQL editor I canselect the name from the dropdown and I'm OK - but I'm writing a perlscript to connect to the database.I didn't create the database and don't know how it was created.--Message posted via http://www.sqlmonster.com

View 2 Replies View Related

Acces Multiple Servers

Nov 15, 2006

Hi,

I need to access a table from another server in my procedure...I am now connected to say SERVERA...I need to access another table SERVERB.TABLE2 in the same procedure...

Is there a way to do that...

I need to connect to two servers from the same procedure to get data..

Please get back

Thanks,

View 3 Replies View Related

OLAP In SQL Server 2005

Mar 21, 2007

HI, i am new to OLAP in Sql Server 2005, bascially  i have read through lots of article on this OLAP and basically i get to know how it works and function theorically, but i could not find an article to show me step by step on how to create the cube and how to query the data from the cube. Would very much appreciated if somebody out there can explain to me in details how to i create cube from sql server 2005 as i totally no idea at all. Though i can view the sample cude in sql server 2005, but i dunno how to create it from my relational database. I need it very urgent as needed by my job functionality. Hope to get some explanation from you guys asap. Just assume i am totally new and please guide me step by step to create a normal and simple cube and query from the cube. I just need to create simple prototype. Thanks alot yea guys :)

View 3 Replies View Related

Connecting To OLAP Server

Jun 7, 2001

I keep getting this error when trying to connect users to the OLAP server from Excel (using SQL 7.0).

"Unable to open connection.
Cannot Connect to server 'OLAP Server Name'.
OLAP server error: The operation failed due to network problems."

When I use this excel on my machine it works just fine. Any ideas?

View 1 Replies View Related

OLAP Server Stability

Mar 19, 1999

Is anyone satisfied with stability of OLAP-services ?

We´ve got a cube with 103 Levels and about 1.100.000 rows in the
fact table.

After processing the cube everything works fine.
After changing the fact-table (new rows) the only option is to
process the cube (no incremental update or refresh offered).
OK.
After processing the cube (which sometimes failes) the cube sometimes
containes wrong data !?
Sometimes during operation with the OLAP-Client(inSight from arcplan)
the data changes.
Sometimes it is not possible to connect to the cube.

Did anyone have same or other or better experience ?
Keen to discuss !

View 1 Replies View Related

Connecting To OLAP Server

Feb 27, 2001

We are running SQL Server 7.0, Service Pack 3, on a NT 4.0 (Service Pack 5a?)
server. The server is running both SQL Server and OLAP.

When attempting to connect to the OLAP instance on the NT 4.0 server from a local
PC, also running SQL Server 7.0 Service Pack 3, the following error message is
displayed:

"Cannot retrieve the repository information from the server [datamartact]."

Note: 'datamartact' is the name of the NT 4.0 server.

Does anyone encountered this message before? Could this mean that the person
who is trying to connect neads read or read/write permission to the partition
were the repository is kept?

Bill Zimmer - zim@ibx.com

View 2 Replies View Related

Register Server OLAP

May 6, 2005

I want register a server it is on other PC is a server, BUT IT SHOW TO ME A MESSAGE OF ERROR:
Errors ocurred while connecting to ----ip-----
Cannot open connection to Analysis server ----ip-----
Can not connect a server ----ip-----. not this in operation or this occupied
Do you still Want to register this server

View 2 Replies View Related

Setting Up OLAP Server: Need Help!

Aug 24, 2006

:eek:
I am having trouble setting my SQL databases up as analysis services databases in SQL Server '05. Does anyone know how to help me???? I have lots of cubes to build, but I can't get the datasources there.
Thanks much for any advice.
mbunch@bighammer.com

View 2 Replies View Related

OLAP Server Connections

Sep 21, 2007

Hi all,

Is it true that connections to the OLAP server can only be made using a Windows Account?

Is there a way to setup those connections to the OLAP using a Standard Account?



Thanks in advance

Yukon DBA

View 1 Replies View Related

Sizing An OLAP Server

Apr 16, 2008

Hi there,

We are experiencing some contention of resources between our RDBMS and our OLAP environment; both SQL2005; so we are going to put the OLAP side of life onto another seperate box. Therefore I need to work out what sort of requirements we are going to need; and this is where i have no idea.

I have had a look at the HP sizers, however this is looking primarily at normal RDBMS setups rather than specifically for OLAP. Is there any specifics that I need to consider/nail down before working this out?

To give you an idea:
We currently have 210 million rows in our main fact table, and each row is averaging about 330 bytes
The size of our current OLAP database is only 4GB
It appears as though we are currently getting anywhere between 6 and 20-30 concurrent users

Considering the above; I would have thought a dual core cpu setup (maybe x2) with 8-10GB of ram would have been the ticket?
Now I have done a server sizing exercise for a normal SQL2005 installation; considering temp db on seperate spindles to the log and database tables etc; but what sort of considerations do I need to do for a server running SSAS?

Thanks in advance for any assistance anyone can offer on this front

Regards
Troy

View 3 Replies View Related

Order By (boolean) Acces-sqlserver

Dec 19, 2005

I have migrated an Access database to SQLserver,

all seems ok,
but I found that an "order by" on a boolean Access field, is reverse under
SQLserver ?
I had to add "desc" to my code "order by field desc" to retrieve the correct display.

Could someone confirm this ? I am very surprised.

Thanks, Pierre.

View 4 Replies View Related

Acces To A File That Is Locked By Another Process

Mar 15, 2006

I am writing a package to process perfmon logs. The issue I have come across is that the perfmon process holds onto the log file and SSIS fails because it wants to exclusive read access. Is there any way of getting SSIS to not take an exclusive read on the file.

I can read the file in notepad fine but not SSIS.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved