Viewing 15 posts - 76 through 90 (of 13,451 total)
well i remember a time where we used to provide scripts, and then an explanation of what not to do....
try my flavor of unused indexes. don't blindly execute them, evaluate...
May 26, 2020 at 9:02 pm
going forward, you could add something like this extended event as an example.
assume you want to track what [mydomain\IzaguirreL] is querying.
you don't need to identify the domain, as that is...
May 21, 2020 at 6:48 pm
without already having added something specifically to capture that, like an old-style trace or the current incarnation of capturing via extended events, then no, it is not possible to find...
May 21, 2020 at 6:38 pm
Dan, rather than use the > redirect, I've been using | Out-File with the Append parameter, and it works flawlessly for me: i return info messages, data sets etc, dividers,...
May 6, 2020 at 11:29 am
upgrade your SQL Server Management Studio to the latest 18.3 or above..
versions 17 through at least 17.5 did not handle browsing cubes against 2014 correctly.
April 15, 2020 at 4:34 pm
for a definition of decimal(10,5):
10 = maximum number of digits.
5 = number of digits to the right of the decimal point.
that means the largest value allowed before an error would...
January 6, 2020 at 12:38 pm
you have two FROM statements; it treats the inner FROM as an accidental cross join; i think if you simply remove it you get the results you would expect.
this is...
December 27, 2019 at 10:07 pm
have you used sp_send_dbmail before? i swear i've seen that error when the .net library 3.5 was not installed on the server, but dbmail depends on it:
i wrote a decent DDL trigger example for someone that had a similar-ish requirement.
some people needed to be able to create ONLY views.
the solution was arole,a nd a DDL trigger...
December 5, 2019 at 9:18 pm
i think the issue is that on your new SQL2017 server, you must enable Filestream at the server level in SQL Configuration manager first.
then filestream would be supported. also, i...
December 5, 2019 at 6:20 pm
this might be data related.
so far, lets say Word had to render x number or rows of text boxes, and now the data finally exceeds the number of objects word...
December 5, 2019 at 6:05 pm
your insert statement above is clearing inserting 820419145086 into the column in the very first line of the table, so your assumption that the column [NOKP_NEW] [nvarchar](255) NULL, will cleanly...
December 5, 2019 at 3:30 pm
you can either join the master_profile table to the insert for the child table, or you can leverage the OUTPUT clause and capture the newly inserted data into a temp...
December 5, 2019 at 1:37 pm
so looking at the code, it is using Excel Interop to save to a tab delimited file;
can you eliminate the middleman and just read the excel document with SSIS, and...
December 3, 2019 at 8:25 pm
that would only work on a very small environment right? I've got 64 prod servers and nearly 200 total including non-prod, and the number of times in the last year...
December 2, 2019 at 3:36 pm
Viewing 15 posts - 76 through 90 (of 13,451 total)