Forum Replies Created

Viewing 15 posts - 31 through 45 (of 159 total)

  • RE: Not Enough Storage Hell

    What SQL Service pack do you have installed? Try this hotfix.

    http://support.microsoft.com/?kbid=889170


    Andy.

  • RE: Calling Java API from SQL Server 2000

    Hi

    Some members will not like using this but try the sp_OACreate proc.

    Hope this helps

     

     


    Andy.

  • RE: Execute an Oracle procedure from sql server

    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...


    Andy.

  • RE: Unable to enlist in the transaction

    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

     

     


    Andy.

  • RE: DB Recovery!!

    Just one question.

    If you recover the .mdf and .ldf files, how would you re-attach them?


    Andy.

  • RE: Recusive Hierachy

    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...


    Andy.

  • RE: ARITHABORT

    This behaviour is by design try using

    SET ARITHABORT ON

    (keep the update in its own batch dont mix with other sql statments)


    Andy.

  • RE: Change database connection

    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...


    Andy.

  • RE: Calling DLL from Stored Procedure

    Did you register the dll on the server?

    What is the error message?


    Andy.

  • RE: Find a column

    --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...


    Andy.

  • RE: sa password change

    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...


    Andy.

  • RE: Autentication Problem

    YEAH  It was the simple stuff! And I have just noticed how I spelt Authentication!


    Andy.

  • RE: SQL Clusters and Analysis Services DSO

    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...


    Andy.

  • RE: SQL Clusters and Analysis Services DSO

    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...


    Andy.

  • RE: What is a DBA???

    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...


    Andy.

Viewing 15 posts - 31 through 45 (of 159 total)