Viewing 15 posts - 166 through 180 (of 329 total)
if EXISTS (SELECT 1 from inserted)
if EXISTS (SELECT 1 from deleted)
adding the above two before begin in both add and delete triggers did the job.
Thanks
December 12, 2018 at 10:26 pm
Multiple rows will never be inserted at the same time so it is ok for the code to not handle that situation.
Only 1 row will be inserted at any...
December 12, 2018 at 8:39 pm
October 17, 2018 at 11:57 pm
October 17, 2018 at 11:55 pm
no..the source table is in domain A and the destination table is in Domain B
So a row gets added to table A, it should be immediately added to TableB...
October 17, 2018 at 11:43 am
My Initial table list of servers
My reachable list of servers in successservers table
My not reachable list of servers in failureservers table
Then I use my select against successservers table and collect...
October 8, 2018 at 4:26 pm
Can this be achieved without using script task (without coding) Please advise
October 8, 2018 at 4:21 pm
As I said if the servers are reachable then my ssis package loops through the sql table captures relevant data. but once a server is not reachable then my ssis...
October 8, 2018 at 5:52 am
As I said if the servers are reachable then my ssis package loops through the sql table captures relevant data. but once a server is not reachable then my ssis...
October 8, 2018 at 5:51 am
As I said if the servers are reachable then my ssis package loops through the sql table captures relevant data. but once a server is not reachable then my ssis...
October 8, 2018 at 5:41 am
how do you do that?
June 20, 2018 at 11:05 pm
I get an email when I execute the same code without any attachments.
I don't think the error has anything to do with smtp.
June 5, 2018 at 7:47 am
I tried that already.Did not work
PS H:\> $File = gci \\abcd\efgh\ijkl | select -last 1
PS H:\> $From = "abcd@gmail.com"
PS H:\> $To = "defg@gmail.com"
PS H:\>...
June 4, 2018 at 10:31 pm
It did not work
$File = "gci \\abcd\efgh\ijkl | select -last 1"
$From = "abcd@gmail.com"
$To = "efgh@gmail.com"
$Attachment = $File
$Subject = "Here's the Email Subject"
$Body =...
June 4, 2018 at 7:44 am
I tried that..it does not work.
It starts searching from the directory I am running the code from.
Send-MailMessage : Could not find file 'H:\files_06-04-2018_02-40-08.html'
My files exists in...
June 4, 2018 at 3:42 am
Viewing 15 posts - 166 through 180 (of 329 total)