Forum Replies Created

Viewing 14 posts - 1 through 14 (of 14 total)

  • RE: Select

    thnx for enlightening me. m still a novice...

  • RE: Remote connection issues with SQL Server 2005

    You can also check if the admin has reset the password or the password has expired for that instance through which you access SQL server.

  • RE: Select

    You can also try the following:

    use database_name

    select * from sys.tables where type ='u'

    and name like '%criteria%'

  • RE: Passing parameter value to SQL job

    Thanks buddy...Will bug you if any probs...Can I have your Email ID?

  • RE: Passing parameter value to SQL job

    Raj has got the right point. It seems I'll have to change my approach.

    Thanks Guyzzz..

  • RE: Passing parameter value to SQL job

    Thanks Adi & Raj for your responses.

    Raj has been on the point. It seems I'll have to change my approach to acheive the same.

    Thanks All for your valuable responses.

  • RE: Passing parameter value to SQL job

    Could you please elaborate on the use of both...

  • RE: Passing parameter value to SQL job

    Yeah you are right but the situation is such that the business users wont bother executing the stored procedure.

    Changes at table level is not possible since the system would be...

  • RE: Passing parameter value to SQL job

    Thanks Adi & Raj for the reply.

    The situation is that the user will only execute the job. I wanted to know if there is some mechanism in sql server 2005...

  • RE: Error while transferring SQL 2005 data to MS ACCESS

    EXEC master.dbo.sp_addlinkedserver @server = N'Linked_Server_Name', @srvproduct=N'server_to_link_name', @provider=N'SQLNCLI', @datasrc=N'server_to_link_name', @catalog=N'DatabaseName'

    GO

    EXEC master.dbo.sp_serveroption @server=N'Linked_Server_Name', @optname=N'collation compatible', @optvalue=N'true'

    GO

    EXEC master.dbo.sp_serveroption @server=N'Linked_Server_Name', @optname=N'data access', @optvalue=N'true'

    GO

    EXEC master.dbo.sp_serveroption @server=N'Linked_Server_Name', @optname=N'dist', @optvalue=N'false'

    GO

    EXEC master.dbo.sp_serveroption @server=N'Linked_Server_Name', @optname=N'pub', @optvalue=N'false'

    GO

    EXEC master.dbo.sp_serveroption @server=N'Linked_Server_Name', @optname=N'rpc',...

  • RE: Error while transferring SQL 2005 data to MS ACCESS

    I wasn't able to find the exact cause. But what I did was:

    1) I reconfigured the MSDTC.

    2) I created a new linked server and used the linked server script...

  • RE: SQL2005 vs SQL2000 Compatibility issue

    I am using SQL Server 2000(80) as the compatibilty level for SQL 2005 database which is the same as in SQL 2000 database.

    One important point I would like to...

  • RE: SQL2005 vs SQL2000 Compatibility issue

    Thanks Mike...

    But I checked well all the date conversions where probably the code could crash down on different versions of SQL Server.

    Also checked with the date settings on the servers.

  • RE: Error while transferring SQL 2005 data to MS ACCESS

    Thnx...Its working...

Viewing 14 posts - 1 through 14 (of 14 total)