Forum Replies Created

Viewing 15 posts - 6,361 through 6,375 (of 7,429 total)

  • RE: Timeouts - where do I start?

    Also what version of SQL are you using?

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Table Audit

    Sorry try instead TSQL SQL:StmtCompleted and you will see the queries. You can also use Sotred Procedure items to see when a Procedure is used.

    "Don't roll your eyes at me....

  • RE: OLE DB issues after SQL2000 install

    If ASP is runnign on a seperate server then your issue is probably from whatever version of the MDAC you are running. Install at least the one shipped on the...

  • RE: Immediate-updating subcriptions

    Is you update being done thru stored procedure? I have not seen anything like this

    quote:


    Server: Msg 137, Level 15, State 2,...

  • RE: SQL performance

    Ok now it gets fun. I have a suspect on one reason but need some more details here. First what is the time difference now? Also can you post the...

  • RE: Problem with Not In Clause

    Yes, an it can be a pain to figure out exactly why. Can you post the DDL of both tables please.

    "Don't roll your eyes at me. I will tape them...

  • RE: Change sort order on SQL7 ??

    What is the problem the app is having? I have never seen an app freak based on sort order before as that effects that methodology for the sort to work...

  • RE: Limited disk space/using network drives

    I deal with limited space but so far my time has not been an issue. Plus I have a free drive with enough space for the backups without it being...

  • RE: Co-Existance of Anit-Virus and SQL Server

    Everyone seems to have the same feeling but 1 thing I don't agree with is not having anything in place. Remeber you do have executables and things do happen so...

  • RE: Table Audit

    SELECTs can really only be caught via Profiler or other query monitoring method. The others can be done via triggers

    Ex.

    CREATE TRIGGER tr_AuditUse_tblX ON dbo.tblX

    FOR INSERT, UPDATE, DELETE

    AS

    INSERT INTO tblAudit...

  • RE: BCP in (Duplicate Key Error)

    Sorry BCP has a maximum of 65000 something ignores then no matter what your setting is it stops ignoring. You could break into batches with firstrow lastrow options. But the...

  • RE: Tape Issue

    Ok you stated you did not know about cleaning the tape drive. This needs to be done periodically to ensure tape mess and dust are not on the recording heads....

  • RE: Transaction Log backups Failing

    Let us know if this goes away or if you have any other issues. Also just so I don't cause you any issues myself inadvertently. You should always perform a...

  • RE: Error/Exception trapping

    There is not much in the way of being able to trap errors in SQL. @@error will have the error number and you can use RAISERROR to pass a specific...

  • RE: Change sort order on SQL7 ??

    No other way, you hit it on the head.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

Viewing 15 posts - 6,361 through 6,375 (of 7,429 total)