Viewing 15 posts - 31 through 45 (of 158 total)
What SQL Service pack do you have installed? Try this hotfix.
July 7, 2005 at 5:26 am
Hi
Some members will not like using this but try the sp_OACreate proc.
Hope this helps
July 6, 2005 at 4:38 am
Hi,
You can exec an Oracle proc by using OPENQUERY. You can pass the proc parameters. But it does not seem if you can exec an Oracle cursor proc. So I...
June 22, 2005 at 7:55 am
On Win2003 the Microsoft Distributed Transaction Coordinator (MSDTC) is disabled for network transactions.
You need to follow these instructions http://support.microsoft.com/default.aspx?scid=kb;en-us;873160
June 9, 2005 at 2:56 am
Just one question.
If you recover the .mdf and .ldf files, how would you re-attach them?
May 3, 2005 at 6:00 am
I deal with this everday.
Temp tables and unions are the best methods. Cause you can debug easier and dynamically deal with a new level.
Mulitipal joins and the same table is...
April 19, 2005 at 1:31 am
This behaviour is by design try using
SET ARITHABORT ON
(keep the update in its own batch dont mix with other sql statments)
April 6, 2005 at 6:35 am
You can create a linked server. Seach on books on line.
When you create the linked server make sure that you give the user access only to the tables required and nothing...
April 6, 2005 at 6:30 am
Did you register the dll on the server?
What is the error message?
April 5, 2005 at 11:47 pm
--Get the object id
declare @Object_id int
select @Object_id = object_id ('table')
--Get the column names
SELECT [name] as coll_name
FROM syscolumns
WHERE (id = @Object_id)
--Put the column names into a data set and scroll through...
March 31, 2005 at 11:14 pm
From Enterprise Manager Right click on the server.
Choose Edit SQL Server registration properties....
Choose Use Windows authentification
You should be able to log in then go to security choose logins and right...
March 29, 2005 at 11:47 pm
YEAH It was the simple stuff! And I have just noticed how I spelt Authentication!
February 7, 2005 at 6:31 am
Maybe this will help.
You must load DSO on the IIS front end. IIS an the Analysis services server.You use HTTP connectivity. You need to register msmdpump.dll on Front end and Analysis...
December 15, 2004 at 1:48 am
Hi Wayne ,
Obtaining data form another sql server is not at all a problem as its just another datasource for analysis services. However where will IIS be loaded? Explain your...
December 15, 2004 at 1:13 am
What is a DBA? The day I find out I will let you know as its been different for each company iv worked at. Right now I am the "do...
December 15, 2004 at 1:02 am
Viewing 15 posts - 31 through 45 (of 158 total)