Viewing 15 posts - 61 through 75 (of 13,429 total)
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
NICE , BUT RECEIVED ERROR AT MY END .
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
datatime has an implicit conversion to varchar, based on your locale. datetime2 does not.
the map below from microsoft has some other examples.
November 25, 2019 at 7:53 pm
you were originally planning to handle the null, so this is a bit better:
SET @CaptureError= @CaptureError + ' ,Date: ' + coalesce(convert(varchar(10), @Date,101), 'NULL')
November 25, 2019 at 7:31 pm
i think the definitions of the index need to match the queries hitting the server. the multi column index is not equivalent to indexing three columns individually.
a single index on...
November 22, 2019 at 5:04 pm
sultikav i guess lets start with the basics:
is the SSRS service up and running, so you can navigate to pages or the management links, and you are just having trouble...
November 21, 2019 at 1:54 pm
Viewing 15 posts - 61 through 75 (of 13,429 total)