Forum Replies Created

Viewing 15 posts - 436 through 450 (of 921 total)

  • RE: utility functions

    quote:


    I'm confused why you think the size is large - I use int to store the CCYYMM period.


    November 20, 2003 at 8:45 am

    #482903

  • RE: truncate log after differential bkup

    Rather than using one backup device, why not back up the tran log each time to a different file with init? Then the copies to the other server should...

  • RE: Replaying the transaction logs after recovery

    quote:


    quote:


    Recovery can only be done with either synchronised data and log files (i.e. from...

  • RE: Lookup Table

    I also agree with Melanie. As does my friend Joe. In his usual charming style from another list:

    quote:

  • RE: Jonathan hit the 500 posts

    quote:


    Why do I get the impression that you guys only know bavarian beer????

    There is more in Germany than Munich (not much...

  • RE: Replaying the transaction logs after recovery

    quote:


    quote:


    There's obviously no way to "play forward" without a subsequent log backup; where...

  • RE: user SID

    If you let the system generate the SID, it will be a GUID (as it is generated by NEWID()), so system-generated SIDs should never be the same. On the...

  • RE: utility functions

    quote:


    Neato thanks for the improvements. I'll try them out in production soon as I burn em in.

    "Why not just use the datetime...

  • RE: How reliable is Performance Monitor?

    Are you reading Average or Last numbers? If Average, then the duration on the ws would differ, and might include periods with higher activity.

    Any chance your server has more...

  • RE: Replaying the transaction logs after recovery

    quote:


    I am not using the snapshot of the sql, I am using the VDI in order to do a Disk\partition snapshot (The...

  • RE: Replaying the transaction logs after recovery

    quote:


    Hi again;

    First of all, thanks for the replies, however,

    As far as I understand there is no way to play the logs forward...

  • RE: utility functions

    
    
    CREATE FUNCTION dbo.fnAlphabetOnly(@Input nvarchar(400))
    RETURNS nvarchar(400) AS
    BEGIN
    DECLARE @pos smallint
    SET @Pos = PATINDEX('%[^A-Za-z ]%',@Input)
    WHILE @Pos > 0 BEGIN
    SET @Input = STUFF(@Input,@pos,1,'')
    SET @Pos = PATINDEX('%[^A-Za-z ]%',@Input)
    END
    RETURN @Input...
  • RE: selecting smalldatetime fields problem

    
    
    SELECT *
    FROM Calendar_Event
    WHERE Start_Date_Time >= @StartDate
    AND Start_Date_Time < @StartDate + 1

    SELECT *
    FROM Calendar_Event
    WHERE @StartDate BETWEEN Start_Date_Time AND End_Date_Time

    --Jonathan

  • RE: Field Meta Data by Table

    Why not just use the INFORMATION_SCHEMA.TABLES view?

    --Jonathan

  • RE: Selecting specific values - ASP

    If you're only returning one row, use a stored procedure with output parameters for the values you are fetching. This will be faster than using a recordset and will leave...

Viewing 15 posts - 436 through 450 (of 921 total)