Viewing 15 posts - 2,071 through 2,085 (of 39,810 total)
This script creates 5 posts in the 'frm.posts' table. These are direct responses to threads.
/*
delete frm.posts;
dbcc checkident ('frm.posts', reseed, 0) with no_infomsgs
go
*/
set nocount on;
set xact_abort on;
begin...
April 29, 2021 at 2:25 pm
This script creates 5 threads in the 'frm.threads' table.
/*
delete frm.threads;
dbcc checkident ('frm.threads', reseed, 0) with no_infomsgs
go
*/
set nocount on;
set xact_abort on;
begin transaction
/*create proc frm.api_threads_post
@f_idint,
...
April 29, 2021 at 2:25 pm
Regarding the MERGE statement in the frm.api_posts_reply_post procedure the major issue I saw is/was the target is the entire frm.posts table. The Docs for MERGE is a litany of warnings,...
April 29, 2021 at 2:24 pm
This script creates 3 stored procedures which create rows in the remaining 2 tables, 'frm.threads' and 'frm.posts' tables. The proc to create new threads is a plain insert. The proc...
April 29, 2021 at 2:23 pm
Added N prefix to unicode strings. Added time_zone to frm.Users.
set nocount on;
set xact_abort on;
begin transaction
/* create users */
declare @u ...
April 29, 2021 at 2:19 pm
Setup #2 Seed Data
This script inserts seed data into 5 of the 7 tables created by setup1.
7 users were created:
idemailusername
1admin@abc123.comSysAdmin
2stevej@abc123.comSteveJ
3stevec@abc123.comSteve Collins
4moderator1@abc123.comJose SQL
5moderator2@abc123.comJane5687
6member1@abc123.comAdamF
7member2@abc123.comBean When
8 claims were created:
April 29, 2021 at 2:19 pm
Thanks, Pablo.
Content has been the biggest issue, so more bloggers and authors would be nice.
hint, hint 😉
April 28, 2021 at 9:50 pm
Thanks for all the feedback and kind words. We aren't opposed to going back to 5, but for now we are trying this to see how it changes workloads and...
April 28, 2021 at 2:30 pm
We went back to our normal schedule last week which is 1 day at home 4 days in office last week. And while I miss having a dress...
April 23, 2021 at 6:16 pm
another complication for me personally is that amongst my officemates there are some vaccine refuseniks, with some presumably never having covid and at the same time being in...
April 23, 2021 at 6:15 pm
If you use Profiler, and you hit enter after entering a value for database name, you get another box.
However, you should start to look at Extended Events, as Scott listed...
April 22, 2021 at 2:18 pm
It could be someone internal, or someone that helps a hacker.
It could also be someone that gets access internally through social engineering, poor security, or another backdoor. While certainly someone...
April 20, 2021 at 2:34 pm
I constantly think ASCII gives me A as well.
Not sure about this being a problem, after all a number is valid. More, I think they built the wrong function names...
April 19, 2021 at 10:05 pm
Here's a bit of theory: https://www.online-tech-tips.com/cool-websites/what-is-checksum/
HASHBYTES can use SHA1.
This is a quick check, but not necessarily an absolute one.
April 19, 2021 at 7:13 pm
I miss adult contact and discussions, debates, etc. I get to work with lots of kids still, as a coach, but I miss conferences, the office, even random talks about...
April 19, 2021 at 7:05 pm
Viewing 15 posts - 2,071 through 2,085 (of 39,810 total)