Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
update	  sc
set		     sc.Url = '...',
		        sc.UserName = '...',
		        sc.Password = '...',
		
        sc.ListenerPort = 0,
		
        sc.Access = '...',
		
        sc.UserGroup = '...',
		
        sc.InstanceId = '...'
from	LVSourceConfiguration sc
join	Source s on sc.SourceId = s.Id
where	s.Name = 'SOURCE NAME HERE'

...