Forum Replies Created

Viewing 15 posts - 1,336 through 1,350 (of 2,488 total)

  • RE: BackupDiskFile::RequestDurableMedia:failure on backup device

    SQL is notoriusly fickle when utilising network shares. It only takes the slightest of network hiccups to kill a backup job.

    Better long-term solution is to create the backup on the local...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How do u skip a task using Workflow Properties ActiveX Script,but still execute d task after it??

    First setup your workflow as normal. Then for the BULK INSERT  task add a workflow ActiveX Script that changes the precedence constraints appropriately.

    Here's a script I use to run a...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Performance problem with Text data type

    Is this a direct SQL to SQL datapump? If so, do you have any indexes on the Archive table? If not try adding a clustered index, there has been documented...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Microsoft OLE DB Provider for ODBC Drivers error ''''80040e14''''

    Egads

    Have you not heard of stored procedures!!

    Do a Response.Write before the execute to get the actual sql...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Opening the hyper link in the new window

    Send an email to philcart@gmail.com and I'll send some screenshots.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: .rdl files instead of .aspx forms?

    The rdl files are the report definition and are only using in designing the report. Once the report has been designed it's "compiled" and stored in the ReportServer database. at...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Defining a report footer?

    Is your footer table summarising information that is in the main table? If so, can't you place the summary info in the footer of the main table?

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Tesing If a linked server exists.

    Well I must have a special server  

    I use this exact routine in my custom log shipping routine that runs every 5 minutes...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How can I pick mid month?

    That's still pretty vague.

    Is this date stored somewhere and you want to change it after you've performed the processing??

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Tesing If a linked server exists.

    You could perform the same function without using OSQL and xp_cmdshell.
    CREATE PROCEDURE dbo.usp_TestLinkedServer
     @SrvrNm nvarchar(128)
    AS
    BEGIN
     SET NOCOUNT ON
     DECLARE @sql nvarchar(500)
     SET @sql = N'SELECT TOP 1 [spid] FROM ' +...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How can I pick mid month?

    Can you explain the business rules a bit more? ie: what has to happen if the current date is 04/20/05 ??

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Email with errordescription in DTS

    Please don't cross post.

    See my reply http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=172020

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: ErrorDescription in Mail

    There are various ways to do this that involve invoking COM objects and the like, but that gets a little too complicated for my liking.

    What I've found to be best...

    --------------------
    Colt 45 - the original point and click interface

  • RE: sp_who2 output

    Interestingly the sp_who2 code contains this comment in the dynamic SQL,

          -- (Seems always auto sorted.)   order by spid_sort

    What collation are you using? The spid field is converted to a...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Opening the hyper link in the new window

    You put it in the document map label. This is a standard thing for hyperlinks. You can also use _self, _top, _parent, etc...

    From Books Online,

    "Advanced Textbox Properties (Navigation Tab)

    Use...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 1,336 through 1,350 (of 2,488 total)