Viewing 15 posts - 1,141 through 1,155 (of 2,701 total)
I assume you know which login dropped/created the procs.
and assuming you are a SYSADMIN what output do you get out of these
execute as login = 'loginname'
SELECT * FROM fn_my_permissions(NULL, 'SERVER');
use...
August 21, 2021 at 12:12 pm
wrote:Thanks for helping with this case. Very helpful. I also have the same situation. I will try it soon.
Heh... I smell another spammer on the horizon.
yup it was...
August 19, 2021 at 6:52 pm
don't waste time with small changes that will have minor impact on the process.
Do worry about trying to put on paper what the process should do to a whole set,...
August 16, 2021 at 6:03 pm
and please please replace all those selects from tblIssuedTrack onto a outer apply and do the aggregations within it so you only access the table once
August 13, 2021 at 12:11 pm
Good - but do remember that in order to use a tool you need to learn how to use it - if you are like this with a...
August 9, 2021 at 4:55 pm
Thanks Federico , yet this seem to not work properly , at least as far as I cloud see:
DECLARE @TimeStamp VARCHAR(50) = '0x00000003098F384E'
SELECT CONVERT(BINARY(8), @LastTimeStamp,1)...
August 9, 2021 at 2:45 pm
Regarding the kerberos delegation - you may have misunderstood it.
Imagine the following scenario
User (PC) -> SQL Server -> stored proc writes to file on File Server -> File Server
in order...
August 8, 2021 at 1:34 pm
you need to look at what each of the procs is doing and determine what really needs to be done and what is not really required - most of the...
August 7, 2021 at 2:19 pm
Understood on the SSIS thing but the Op wasn't using SSIS. For that matter, I typically try to make it so that I never have to use SSIS anywhere.
.
he...
August 7, 2021 at 10:24 am
FYI made changes in the import wizard and the data imported just fine. I do suggest that when you post a problem, whether here or another site, that...
August 7, 2021 at 7:24 am
if you had to create the spn's I would advise restarting the service.
August 6, 2021 at 9:29 pm
load into a staging table
do joins to main target table - if existing record update, if new record insert . (do updates first)
even if you are using SSIS to do...
August 6, 2021 at 4:33 pm
are you using SSMS on your own PC to do this or rdping to the server and using the SSMS on each individual server?
if on the server then the issue...
August 6, 2021 at 3:15 pm
Viewing 15 posts - 1,141 through 1,155 (of 2,701 total)