Viewing 15 posts - 106 through 120 (of 13,429 total)
have you set your max server memory to a low threshold, so it ends up clearing the procedure cache?
October 16, 2019 at 2:29 pm
in my experience, most performance problems come from coding that works, but performs poorly on large data sets.
as a result, i look at the code, here are some of the...
October 15, 2019 at 2:02 pm
ok the forum converts to varchar as well! so my nvarchar string characters got converted to question marks!
October 9, 2019 at 5:06 pm
your query did not appear, but i suspect it has to do with implicit conversions.
you have to use the N'' denotation to make sure SQL knows it is nvarchar data.
here...
October 9, 2019 at 5:05 pm
are you using a sliding partition strategy for archiving?
don't look at the file groups. file groups is how it is stored, and potentially archived. that is independent from the logical...
October 4, 2019 at 6:56 pm
when the job fails.
if you change it to when the job completes, you gent both success and failure emails.
October 2, 2019 at 7:22 pm
a simple basic example of cross applying a datamath function to get your 36 values based on one date.your example did not go by date, it seemed, though; are you...
September 30, 2019 at 5:40 pm
Roland are you creating the SPN's manually?
typically, the service account running the SQL service creates the SPN on restart of the SQL service.
That means it needs the Trusted for Delegation...
September 30, 2019 at 5:08 pm
Incorrect syntax near '@CheckSum' to me implies a missing comma before, or an equals sign after;
as others had posted, if we see the whole command you executed, it might be...
September 30, 2019 at 4:39 pm
right , the procedures are only part of the settings you need to use.
you need to use both WHERE [arr].Groups LIKE @GroupSearchTerm AND [arr].Users LIKE @UserSearchTerm" in the proc, not...
September 29, 2019 at 12:22 pm
you wnat your SSRS report to have two text boxes or dropdowns for the parameters, and to call a procedure.
the procedure then might look something like this, so if they...
September 26, 2019 at 9:19 pm
not to that level of granularity, but there is a way to code around that.
take a look at this post from a while back where i posted a complete solution...
September 25, 2019 at 7:28 pm
i hope i am not reading this wrong, but it looks like what you want to do is instead of using SELECT *, to select explicit column names.
good job on...
September 24, 2019 at 9:19 pm
then in that case, why don't you simply put all of the servers in Central Management Servers, and execute then via SSMS all together?
stick with the tools you know, isntead...
September 24, 2019 at 6:00 pm
with powershell, here is how i would do it.
Assuming instances_list.txt is a single column list with no header.
also assuming the script has USE [somedb] or fully qualified names so it...
September 24, 2019 at 4:58 pm
Viewing 15 posts - 106 through 120 (of 13,429 total)