Forum Replies Created

Viewing 15 posts - 6,181 through 6,195 (of 7,191 total)

  • RE: Need Help In Trigger

    This is hard work, isn't it? You've been asked four times now to post the code of the trigger. You have to help yourself if you expect anyone...

  • RE: How to configure a job in SQL Server 2005 (Developer)

    Read about BCP, bulk insert and SSIS and choose the one that suits you best. You can also use linked servers and OPENROWSET.

    John

  • RE: drop constraint fails

    Do you have any DDL triggers defined on the database or server?

    John

  • RE: Need Help in Optimize SP

    Rajeev

    You've got seven different SELECT statements in there. Have you tried running them individually to see which one is taking most of the time? Once you identify that,...

  • RE: Cummalitive addition

    Is there a question here, and if so what is it?

    John

  • RE: Modify File OS error 112

    I believe OS error 112 relates to disk space. I know you say you have 63GB free, but have you checked the free space on the drive where the...

  • RE: Need help resolving blocking problems

    Use DBCC INPUTBUFFER to see what query is running on the blocking process. Then go through the normal steps to troubleshoot that query - eliminating any row-by-row processing, ensuring...

  • RE: SELECT using MAX

    I haven't tested this, but even if it's not entirely syntactically correct, it'll point you in the right direction.

    SELECT m.IdSeq, m.MyName

    FROM MyTable m JOIN (

    SELECT MAX(IdSeq) AS IDS

    WHERE KeyValue =...

  • RE: RESTORE DB WITHOUT LOG FILE

    pamarant (11/15/2007)


    If that db crashes at 12:40PM, you can only recover up until your last full backup and apply any differential and log backups, for which you would have none.

    Not...

  • RE: problem with join operation

    Sorry but we're not going to do your homework for you unless you show you've made some attempt to solve the problem yourself.

    John

  • RE: Data containt ' mark

    SELECT * FROM MyTable

    WHERE MyColumn LIKE '%''%'

    John

  • RE: Trigger Trivia

    Great article, Andy - thanks. Can I just ask a question about Tip#4?

    If you want to really make sure no resultsets occur you can use spconfigure to set disallow...

  • RE: in results... display everything after a certain character??

    I think by "a quick example" you mean you want us to do all the work for you. You've been posting here for a long time so I don't...

  • RE: stored procedure issue

    If you're writing the procedures yourself, rather than working with existing ones, then why not just use an output parameter to return the name(s) of the table(s) used? You...

  • RE: Help with Dynamic SQL in Views

    You can't use dynamic SQL in a view, since you would need EXEC or sp_executesql to execute the SQL, and a view definition can only consist of a SELECT statement....

Viewing 15 posts - 6,181 through 6,195 (of 7,191 total)