Viewing 15 posts - 1 through 15 (of 80 total)
"You'll want to update SSRS as well"
Thanks, is this a separate process to the usual SQL upgrade? If so, can you provide a URL for guidance please.
I'm getting hassled (rightly...
February 27, 2024 at 8:06 pm
J drive is the drive that the ISO is mounted to.
I also tried copying the relevant folder to the local C drive and reissuing the command. Still no good.
I've come...
October 19, 2023 at 7:11 pm
It was nothing amazing (code wise) but just that it understood the exact requirements and seemed to spit it out on the fly
public void Main()
{
...
March 26, 2023 at 8:21 pm
I can only take the senders word for it. They claim not to know how the files got these new characters and I'm assuming it is nothing at our end...
March 23, 2023 at 10:09 pm
Perfect thanks.
And now I have that sorted I realise there is a fundamental flaw in my logic.
What I'm trying to do here is get the years/months returned as 3.3 for...
October 14, 2020 at 12:14 am
ok it is solved and posted here for any interest.
Seems it comes down to my inexperience with cursors. I'd normally avoid them due to the bad press but at times...
August 11, 2020 at 8:22 pm
I have a count variable incrementing and printing out. I have a log for every catch and every try. Nothing is unexpected except the number of items (rows) created in...
August 11, 2020 at 1:36 am
I'm not seeing errors and have logging action in all the catch and try blocks but only errors that occur at the top level are being logged.
I'm guessing that those...
August 11, 2020 at 1:16 am
Thanks but my OP was asking abut the debugging feature in VS and if anyone had run into the same errors
August 10, 2020 at 7:57 pm
Thanks I have 20+ years experience. The individual bits run fine.
I have 67 rows go into a cursor (yeah yeah I know) and it only creates 31 rows. Everytime!
The stored...
August 9, 2020 at 2:52 am
With VS running as admin and with your credentials passed with the connection string it does it no problem (at least should).
Profiler won't help me as the SP runs fine...
August 6, 2020 at 8:00 pm
Perfect thanks anthony.green and anand929
July 20, 2020 at 8:54 pm
Apologies for the delay in replying... priorities shifted!
ok so now I can go down the preferred route. I have contacted the vendors whose DBs live on the sql server and...
July 13, 2020 at 9:33 pm
This works prefectly thanks!
declare @ram_id varchar(50),
@tsql nvarchar(1000)
set @tsql = 'select @ram_id = service_ref from OPENQUERY([remoteserver],''select Service_Ref from [remotedb].[dbo].[Service_Request] where service_request_number = ''''2'''''')'
--PRINT @tsql;
exec sp_executesql @tsql, N'@ram_id varchar(50)...
December 5, 2019 at 12:01 am
Viewing 15 posts - 1 through 15 (of 80 total)