Viewing 15 posts - 1,516 through 1,530 (of 2,905 total)
It depends. Are you looking to change jobs/careers or stick with your current position?
If you are sticking with your current position, see what the company expects of you. Talk with...
October 8, 2020 at 8:17 pm
My opinion on this - it depends. If the demand for DBA's and Developers is low in the area you live in, finding contracts may be tricky. I imagine the...
October 7, 2020 at 9:43 pm
I am not familiar with PLSQL, but with the method you are doing in that query, you are doing a 1-1 comparison, so @ID MUST be a single value, unlike...
October 5, 2020 at 9:57 pm
That part is the EASY bit. Set the report parameter to allow multiple values. Then set the report parameter to be a variable in the query and use your WHERE...
October 5, 2020 at 6:16 pm
This one is actually answered in the documentation. First I went here:
which gives an overview of report parameters in SSRS 2016. From there, I searched for "Data Type" which listed...
October 5, 2020 at 5:08 pm
Could you provide:
1 - what you have tried already?
2 - sample output for what it should look like?
I am not sure what "stick" means or what your output should look...
September 30, 2020 at 6:04 pm
Congrats! I have the same certificate and I think I got the same score actually.
Are your plans to keep going and getting more certs or stopping at the MTA?
September 30, 2020 at 4:26 pm
What I mean by sequential is to just don't do the same task simultaneously. So if you are calling a stored procedure, just make sure your package only calls that...
September 25, 2020 at 2:40 pm
I wouldn't bother with NOLOCK as that doesn't work with UPDATE queries. Won't get a syntax error, the hint just gets ignored.
As for a good alternative, if you NEED a...
September 24, 2020 at 9:09 pm
Jeff I think this may be a thing that we have to agree to disagree on. I am not saying that SQL shouldn't be the first solution you look at...
September 24, 2020 at 6:34 pm
The index ID and the Object_ID are tied together. Object_ID will tie back to a table whereas the Index ID will tie back to an index ON the table. So...
September 18, 2020 at 10:12 pm
Stream design doesn't introduce blocking. Your stored procedure is creating the blocking.
You even said it creates blocking - you are requesting an update lock on the table. So anything that...
September 18, 2020 at 8:21 pm
Index fragmentation is a very heated debate on SSC and ranges between "don't ever do it" to "do it once it gets above x%". My advice - if the index...
September 18, 2020 at 8:17 pm
it depends. Having multiple "streams" call the same stored procedure that is updating a table will create blocking on that table and each one will need to wait for the...
September 18, 2020 at 7:57 pm
My approach is to watch for long running queries. If I have a long running query, then I probably need an index (or other tuning) of some sort. I would...
September 18, 2020 at 7:51 pm
Viewing 15 posts - 1,516 through 1,530 (of 2,905 total)