Viewing 7 posts - 151 through 158 (of 158 total)
Can you run the job by using the Service Account that is running the SQL Agent?
April 9, 2018 at 4:29 pm
I receive emails every time a 500 error occurs on the web server and yesterday I...
April 7, 2018 at 9:44 pm
AccountName Level IsCurrent Parent
District 1 1 0 ...
April 7, 2018 at 2:13 pm
April 7, 2018 at 1:40 pm
Hi,
Looks like you are working with slowly changing dimensions. An alternate way is to split the MERGE statement into two, INSERT and UPDATE separately.
--Use Merge...
April 6, 2018 at 11:31 pm
Hi,
ROW_NUMER() analytical function can be used to generate a new number for each row.
Select t.*, ROW_NUMBER () over (order by sortid) RowNumber
from #tblTasks...
April 6, 2018 at 10:22 pm
Hi,
Reduce the Degree of parallelism setting to 2 and give it a try.
April 6, 2018 at 9:34 pm
Viewing 7 posts - 151 through 158 (of 158 total)