Viewing 15 posts - 436 through 450 (of 921 total)
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
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...
November 20, 2003 at 8:41 am
quote:
quote:
Recovery can only be done with either synchronised data and log files (i.e. from...
November 20, 2003 at 8:30 am
I also agree with Melanie. As does my friend Joe. In his usual charming style from another list:
quote:
November 20, 2003 at 8:05 am
quote:
Why do I get the impression that you guys only know bavarian beer????There is more in Germany than Munich (not much...
November 20, 2003 at 7:53 am
quote:
quote:
There's obviously no way to "play forward" without a subsequent log backup; where...
November 20, 2003 at 7:49 am
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...
November 19, 2003 at 6:25 pm
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...
November 19, 2003 at 5:42 pm
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...
November 19, 2003 at 12:49 pm
quote:
I am not using the snapshot of the sql, I am using the VDI in order to do a Disk\partition snapshot (The...
November 19, 2003 at 10:58 am
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...
November 19, 2003 at 10:52 am
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...
November 19, 2003 at 10:28 am
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
November 19, 2003 at 10:18 am
Why not just use the INFORMATION_SCHEMA.TABLES view?
--Jonathan
November 19, 2003 at 8:41 am
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...
November 19, 2003 at 8:36 am
Viewing 15 posts - 436 through 450 (of 921 total)