Viewing 15 posts - 46 through 60 (of 113 total)
Thank you for the response and explanation. I have added the account back the errors are not coming again. I think it it worked.
December 21, 2022 at 3:34 pm
Yes, it is express and working fine.
December 21, 2022 at 1:08 pm
Thank you. I have fixed it by changing IIS application pool identity.
November 29, 2022 at 3:10 am
Thanks everyone. I will speak to the team and see what we can do.
November 24, 2022 at 1:53 pm
When it comes to validating users’ input, dynamic SQL or not, I like to use the belt and braces method of validating the input by running it through the...
November 23, 2022 at 3:07 pm
Thanks Johan.
Can you share some example of parameterized stored proc.
Ex: something like this.
Create sp_name (@u_id int,@pass varchar(100))
as
begin
declare @l_u_id int
declare @l_pass varchar(100)
code here
end
2. If I remove reader, how he login used...
November 23, 2022 at 8:59 am
Thanks Steve. I am working on to the server provider to have open ports to the server. Once I get list will disable unused ports.
November 22, 2022 at 3:00 am
The firewall on database server should only be accepting connections from the web application server and a limited range supporting your IT department, right?
Yes, that is correct. For lot...
November 22, 2022 at 2:59 am
Thank you confirming Durai, that's what I read after I posted.
November 21, 2022 at 12:42 pm
Thank you Jeffrey Williams. Then we will run in the same account, but not sure what us the password for that default account.
Can we reset the password. I am further...
November 21, 2022 at 4:10 am
Double check your configuration settings for the network. You could have something else open and available. Ideally, we do not expose SQL Servers on the Internet in any way,...
November 20, 2022 at 3:29 am
Got it.
select 'LOAD DATA INFILE ''db/'+name+'.txt'' INTO TABLE '+name+'('+STRING_AGG(COLUMN_NAME,',')+');'
from tbl_column_length C left join sysobjects S on C.TABLE_NAME=S.name
where type='u'
and length <100
and name in('table1')
group by name
November 16, 2022 at 2:53 pm
Thank you @sean Pearce.
I am doing same for other load but getting an error.
-- Needed Result
LOAD DATA INFILE 'db/table1.txt' INTO TABLE table1 (id,name,Dept)
select 'LOAD DATA...
November 16, 2022 at 1:50 pm
Viewing 15 posts - 46 through 60 (of 113 total)