Viewing 15 posts - 1,096 through 1,110 (of 1,464 total)
You can provide a user-friendly name at creation time by explicitly giving it a name.
Note that I have included the table name in the constarint name. This is because...
May 21, 2017 at 1:33 am
Since you want to drop all procs, views, and all but 2 tables, why not simply start with a new DB, and create the 2 tables. Data from just 2...
May 21, 2017 at 1:23 am
The best that I can come up with is
cast(case substring(@dtString, 20, 1)
when '+' then dateadd(mi, -datediff(mi, 0, substring(@dtString, 21, 5)), substring(@dtString, 1, 19))
May 21, 2017 at 1:13 am
May 17, 2017 at 4:43 am
A couple of items to take note of
1 - Parameter @Message ... Why NVARCHAR - Your messages have no unicode characters. Why MAX - Your messages are short enough for...
May 17, 2017 at 4:29 am
I cannot identify what you are looking for, but perhaps this will start you off along the right track.
DECLARE @data XML = N'<navigation>
<content label="Introduction">
May 16, 2017 at 3:37 pm
"Msg 241, Level 16, State...
May 12, 2017 at 12:18 pm
I would parse the xml, like this
declare @INQ table (
id int
, ordertxt varchar(3000)
)
insert into @INQ (id, ordertxt)
values
May 10, 2017 at 2:37 pm
May 9, 2017 at 10:37 pm
May 9, 2017 at 1:04 pm
May 9, 2017 at 9:10 am
Viewing 15 posts - 1,096 through 1,110 (of 1,464 total)