Forum Replies Created

Viewing 10 posts - 1 through 11 (of 11 total)

  • RE: Unable to Register SQL Server

    Hi,

    1. You should see Microsoft SQL SERVER 7.0 in Start-Programs

    2. VERSION 7 in registry

    3. open EM, click Microsoft SQL Server, right click in the right part of the window, open...


    Kindest Regards,

    vbenus

  • RE: Unable to Register SQL Server

    Hi,

    try to check client tools of your users. Only EM from sql 2000 client tools can register named instance od SQL server.


    Kindest Regards,

    vbenus

  • RE: What can the role db_ddladmin do?

    Hi,

    try stored ptocedure sp_dbfixedrolepermission

     


    Kindest Regards,

    vbenus

  • RE: Timeout on SP across Linked Servers

    Hi,

    try to exec simple query from Server A to Server B and reverse

    (on ServerB: select * from ServerA.master.dbo.sysobjects,

    on ServerA: select * from ServerB.master.dbo.sysobjects)

    So you can check where is problem...


    Kindest Regards,

    vbenus

  • RE: Profiler security

    Hi,

    yes, it's true. When you execute SQL profiler, you execute sql profiler procedures. Only sysadmin can execute profiler procedures (sp_trace_setstatus...).


    Kindest Regards,

    vbenus

  • RE: Table structure duplication

    Hi,

    you can create a table with the same structure, initialized empty from existing one with

    select * into TAB2 from TAB1 where 1=2  

    but identity column will be also created


    Kindest Regards,

    vbenus

  • RE: Cast problem

    There is 0 in your result set.  And that is problem. You cannot use 0 in your query cast(cast({A} as varchar) as datetime)

    try: select cast(cast(0 as varchar) as datetime)

    and you'll get error.

     

     

     


    Kindest Regards,

    vbenus

  • RE: Linked Server Perfomance Issue

    hi,

    try to set "Use Remote Collation" property of your linked server.

     

     

     


    Kindest Regards,

    vbenus

  • RE: Cast problem

    Hi,

    i think you have problem with your data. Try query

    select [service date] from [errormode detailed]

    and check int value from [service date]. I hope you'll find int value which isn't in right format.

     


    Kindest Regards,

    vbenus

  • RE: General network error wit job

    Job is running locally.


    Kindest Regards,

    vbenus

Viewing 10 posts - 1 through 11 (of 11 total)