Viewing 15 posts - 1 through 15 (of 113 total)
Getting an error when I ran the query DECLARE @sql nvarchar(1000)
DECLARE @ColumnName nvarchar(75)
DECLARE @TableName nvarchar(75)
SELECT @ColumnName = name from sys.columns
SELECT @TableName...
September 24, 2018 at 12:36 pm
September 24, 2018 at 11:47 am
I did understand the concept. Thanks a lot. I appreciate it.
September 13, 2018 at 10:42 am
Thanks Drew for the query, worked beautifully. My development skills are still in developing stage so I am not sure what this query is doing even though it is working....
September 13, 2018 at 10:22 am
of course. Silly me. Its all good.
September 4, 2018 at 10:57 am
Done
update [Staging].[StgContactdata]
set CompanyNid = REPLACE(CompanyNid, char(9),'')
update [PMG].[Contactdata]
set CompanyNids = convert(int,s.CompanyNid)
FROM [PMG].[Contactdata] c
join [Staging].[StgContactdata] s on c.ContactNids = s.ContactNid
where...
August 17, 2018 at 8:33 am
https://www.acronis.com/en-us/
Just going to read about it.
August 9, 2018 at 12:48 pm
August 9, 2018 at 9:18 am
I must have been doing something wrong but I was able to run setspn command successfully. So now I am able to access the linked server without getting any error,...
August 9, 2018 at 8:48 am
So I ran this query and I m looking at some connection using NTLM (for local machine) , some Kerberos and some SQL.select session_id,net_transport,client_net_address,auth_scheme from sys.dm_exec_connections
I...
August 8, 2018 at 2:23 pm
August 8, 2018 at 12:28 pm
June 26, 2018 at 7:39 am
Viewing 15 posts - 1 through 15 (of 113 total)