Viewing 15 posts - 121 through 135 (of 1,999 total)
wait until you get an application that wants to create sql agent jobs and then delete them after. not a hope in hell stopping that process running as...
March 10, 2020 at 10:10 am
joe - I cannot believe what you just posted.. 3rd normal form is what boyce and codd designed.
if you have a table for customers and they have multiple phone numbers...
March 10, 2020 at 10:01 am
if you want to performance test each proc then (depending on how many procs) then you might want to use an automation tool or a trace replay.
the important thing in...
March 9, 2020 at 4:53 pm
this is from an old post, but it might help
March 9, 2020 at 4:49 pm
what kind of QA testing? unit testing? performance testing? basic smoke tests? scalability testing?
all of these use different tools
March 9, 2020 at 4:25 pm
they vary, some are just overnight, some are hourly, some every 15 minutes
March 9, 2020 at 2:41 pm
wait until you get an application that wants to create sql agent jobs and then delete them after. not a hope in hell stopping that process running as SA
we ended...
March 9, 2020 at 12:51 pm
im sure you can google this
but
begin tran
Begin try
--do some sql stuff
End Try
begin catch
--raise error or rollback transaction
--do some other stuff
End catch
March 9, 2020 at 9:06 am
Best thing for you to do is google DMZ (wiki has some nice diagrams) then you can make your mind up.
SQL hardening is quite complex, it's not just firewalls... it's...
March 6, 2020 at 5:05 pm
First, what David Poole said. 🙂
Don't sing the praises of stored procedures and writing T/SQL without being upfront about the disadvantages too. For every benefit stored procedures grant they...
March 6, 2020 at 3:25 pm
I always heard it was a good ides to embed the business processes into stored procedures so the same logic was applied, regardless of the application.
there's a fine line...
March 6, 2020 at 3:17 pm
I am loving these excellent comments.
I will point out that developers have a very short and predictable list of persistence requirements: load a grid, populate a form, save on...
March 6, 2020 at 3:14 pm
The Job and SQL agent gets hung in a few seconds(<10 sec).
Weird thing is, when I run sp_addsubscription manually in SSMS, it is successful. The issue is only when...
March 6, 2020 at 2:50 pm
We have a group who's sole responsibility is to write reports. They are supposed to be doing data analysis, but that's another subject.
None of them have any technical skills,...
March 6, 2020 at 2:43 pm
how long does the job hang for before you kill it - a 650GB restore across the network will take a bit of time … just thinking
also with backup and...
March 6, 2020 at 1:56 pm
Viewing 15 posts - 121 through 135 (of 1,999 total)