Viewing 15 posts - 16,741 through 16,755 (of 26,489 total)
Lowell,
Try this change. I stumbled on to it so I can't explain (at this time) why it makes the in-line code work.
WHERE N < DATALENGTH(@vbCrLf + @input) -- REMOVED...
March 2, 2010 at 10:48 am
Steve Jones - Editor (3/2/2010)
March 2, 2010 at 10:37 am
I'm not sure at this time. This is something i will have to try a play with when I have a little more time. Nice SQL Puzzle, I...
March 2, 2010 at 10:31 am
Lowell,
Try this function, and pass in the char(13) + char(10) as the 2 character deliminater.
CREATE function [dbo].[DelimitedSplit2] (
@pString varchar(max),
@pDelimiter varchar(2)
)
returns table
as
return
with
a1 as...
March 2, 2010 at 9:46 am
What I get tired of are the OP's that think they need to post the same question multiple times in different forums.
March 2, 2010 at 9:26 am
Paul White (3/2/2010)
Lynn Pettis (3/2/2010)
I agree, curious I am.I sense a dog-pile* coming on.
* Did I use that phrase correctly?
Maybe, on the dog-pile. Really depends on the thread and...
March 2, 2010 at 9:25 am
Please do not cross post. It just fragments responses and adds confusion.
Please post replies here.
March 2, 2010 at 9:23 am
Please do not cross post. It just fragments responses and adds confusion.
Please post replies here.
March 2, 2010 at 9:23 am
Paul White (3/2/2010)
Chris Morris-439714 (3/2/2010)
March 2, 2010 at 9:21 am
Several things to check. First, was the log truncated (BACKUP LOG WITH TRUNCATE_ONLY) or was the database changed from FULL recovery model to SIMPLE recovery model and back? ...
March 1, 2010 at 12:33 pm
This:
select name, is_trustworthy_on from sys.databases
March 1, 2010 at 11:53 am
Also from BOL:
The types of operations that cause master to be updated, and that require a backup to take place, include the following:
Creating or deleting a user database.
...
March 1, 2010 at 11:36 am
True, but just keep in mind that those never will change requirements always do. Best to be prepared should it occur.
March 1, 2010 at 11:30 am
The only type of backup permitted with the master database is full backup.
From BOL:
Note:
Only full database backups of master can be created.
March 1, 2010 at 11:26 am
Now, for the gotcha, not all UTC offsets are hourly. You will find some that have an odd offset, like 12.5 hours. In this case, you may want the...
March 1, 2010 at 11:13 am
Viewing 15 posts - 16,741 through 16,755 (of 26,489 total)