Forum Replies Created

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

  • RE: Deadlocking Problems

    quote:


    I have been watching the deadlocks using Profiler and also DBCC TRACEON(1204,3605,-1) and have found that any statement that changes the status...

  • RE: Report Printing from SQL 2000

    You are right Frank.

    Actually Scheduler is a great out of the box tool provided with windows.

    Pay Respect to People on your way up. For you will meet the same People...

  • RE: Report Printing from SQL 2000

    I am not aware what sort of reporting you are planning at.

    I had to work on a reporting app a few months back, What I did was I developed...

  • RE: Report Printing from SQL 2000

    You can write your code in Visual basic and schedule it using NT-Scheduler.

    Pay Respect to People on your way up. For you will meet the same People on your way...

  • RE: Error while Connecting from QueryAnalyzer

    Are you trying to connect through a machine other than the one on which sql server is installed. What Login Name are you using, since you have mentioned that you...

  • RE: Error while Connecting from QueryAnalyzer

    What is the error that you are getting.

    If you are trying to connect using sa account under the security option set the authentication mode to both sql server and windows.

    Pay...

  • RE: building a select query in a stored procedure

    Fully Agree to what steven and frank says.

    Pay Respect to People on your way up. For you will meet the same People on your way down.

  • RE: Where Did The Information Schama Vanished

    They are under the master database.

    Pay Respect to People on your way up. For you will meet the same People on your way down.

  • RE: Assigning a Stored Procedure Return to VB Variable

    Try using the command object instead of the connection object, it is more Intuitive for stored procedures that return values.

    Pay Respect to People on your way up. For you will...

  • RE: Assigning a Stored Procedure Return to VB Variable

    Try using the command object instead of the connection object, it is more Intuitive for operations stored procedures that return values.

    Pay Respect to People on your way up. For you...

  • RE: building a select query in a stored procedure

    Try this example

    create procedure p @p1 varchar(100)

    as

    exec('select * from ' + @p1 + '.dbo.sysobjects')

    Pay Respect to People on your way up. For you will meet the same People on...

  • RE: Seeking Sql Server Experts in Brighton UK

    This are my details

    7 years of IT experience that consists of web application development using ASP, IIS, COM+, SQL Server, VBScript and JavaScript and n-tier business applications development using COM,...

  • RE: DeadLock

    One way is to set the isolation level to the highest i.e. seriallizable.However this may result in command time out,so you may need to increase the command time out of...

  • RE: Query to get first number

    How About this

    declare @j-2 int

    declare @i int

    set @j-2=1

    declare a cursor for

    select [column] from

    order by [column]

    open a

    fetch next from a into @i

    while @@fetch_status=0

    begin...

  • RE: Getting Metadata

    Information about foreign keys is stored in sysreferences table.

    The colums fkeyid and rkeyid are the objectid's of the referencing table and the referenced table respectively.

    Pay Respect to People on your...

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