Viewing 15 posts - 91 through 105 (of 13,463 total)
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
DAC guarantees some memory is held in reserve for an admin to be able to connect, whether you connect via sqlcmd or SSMS.
so if the CPU on the server is...
December 2, 2019 at 1:44 pm
i think you have to uninstall all services and shared features by checking modify existing,and selecting everything that was previously installed via the SQL installer. i do not believe you...
December 2, 2019 at 1:40 pm
there are three statements, so you have to evaluate which one is syntactically correct.
two of the statements are not, so if...
November 25, 2019 at 9:09 pm
Viewing 15 posts - 91 through 105 (of 13,463 total)