Viewing 15 posts - 361 through 375 (of 6,486 total)
IRL11 (8/30/2016)
August 30, 2016 at 10:45 am
This sounds like a textbook case for SSRS subscriptions. Are you sure you want to go "old school" on this one?
August 30, 2016 at 8:43 am
Sergiy (8/30/2016)
Pivot-156509 (8/30/2016)
@Sergiy, @Lynn Pettis: because the SESSION's row are delete few time after, you can see this on code. When a new row is inserted the...
August 30, 2016 at 7:59 am
Was the session table ever reseeded? If so - your history table may have id's greater than the current max SS_ID.
August 29, 2016 at 11:57 am
Pivot-156509 (8/29/2016)
Matt Miller (#4) (8/29/2016)
August 29, 2016 at 10:15 am
With all due respect - just because your log table is showing the same value from another table twice doesn't quite compute to IDENTITY() being flawed. Also - for what...
August 29, 2016 at 9:00 am
Jeff Moden (8/26/2016)
Matt Miller (#4) (8/25/2016)
August 26, 2016 at 7:45 pm
I'm sorry if I am taking the fun out of building a SQL only solution, but there are lots of basic samples of SQLCLR showing how to expose the Regex.Matches()...
August 25, 2016 at 2:28 pm
Eric M Russell (8/25/2016)
Matt Miller (#4) (8/25/2016)
SQLBill (8/25/2016)
Eric M Russell (8/25/2016)
August 25, 2016 at 10:13 am
SQLBill (8/25/2016)
Eric M Russell (8/25/2016)
August 25, 2016 at 9:53 am
mister.magoo (8/24/2016)
Sergiy (8/24/2016)
mister.magoo (8/23/2016)
declare @x xml;
select @x=(
select ''+b
from
(
select 'hello;friend'+CHAR(13)+CHAR(10)
union all
select 'my;world'+CHAR(13)+CHAR(10)
)a(b)
for xml path(''),type);
select @x.value('(./text())[1]','nvarchar(max)')
the important things are to use...
August 24, 2016 at 7:53 pm
Might help if you were to explain what you're doing. using service broker to send dynamic SQL is a truly strange way to use it.
I can't tell...
August 24, 2016 at 10:39 am
(removed - already covered previously in the thread).
August 24, 2016 at 9:51 am
Depending on how strong of a lock you want - the low end could be as simple as putting up a schema-bound view that references the table you don't want...
August 23, 2016 at 8:17 am
Sergiy (8/22/2016)
ben.brugman (8/22/2016)
August 22, 2016 at 11:01 am
Viewing 15 posts - 361 through 375 (of 6,486 total)