mssql-jdbc Questions

4

Solved

When I scan my database, it shows one of the result like VA1143 'dbo' user should not be used for normal service operation in A Vulnerability Assessment scan They have suggested to "Create users ...
Streamy asked 5/5, 2020 at 10:53

8

I got below error when trying to build the microsoft driver for nodejs for sql server gyp info it worked if it ends with ok gyp info using [email protected] gyp info using [email&#16...
Bahaism asked 5/1, 2016 at 10:7

16

Solved

I am writing a "server-side extension" for SmartFoxServer (SFS). In my login script, I need to make a connection to MS SQL Server, which I am attempting to do using JDBC. I have tested the JDBC cod...
Belgrade asked 22/5, 2011 at 12:8

3

I'm trying to insert a datetime value into a MS SQL Server table using pyodbc. If I do it manually, something like: cursor.execute("""insert into currentvalue(value1,currentdatetime) values(55,'2...
Gowen asked 27/6, 2014 at 17:57

2

While attempting to do a hello world MSSQL JDBC connection in Eclipse with Java 16, I'm getting this error: "...server selected protocol version TLS10 is not accepted by client preferences [TL...
Amandy asked 18/10, 2021 at 23:33

2

Solved

In an instance of SQL Server 2016 I have a stored procedure with dozens of parameters. For example: CREATE PROCEDURE spName ( @par1 INT = NULL, @par2 VARCHAR(10) = NULL, .... .... @par98 INT ...
Measured asked 15/11, 2017 at 16:33

4

Solved

I want to read filtered data from a Mysql instance using AWS glue job. Since a glue jdbc connection doesnt allow me to push down predicate, I am trying to explicitly create a jdbc connection in my ...
Sidestroke asked 8/1, 2019 at 14:55

4

Solved

I'm trying to use new java.time classes with most recent version of Sql Server JDBC driver. As I read it should just work with methods: PreparedStatement.setObject() and ResultSet.getObject(). So ...
Quinsy asked 10/7, 2018 at 21:14

1

Solved

I've added Ubuntu 20.04 under AD Domain controller and have installed MsSQL Server on Ubuntu machine. My sqlcmd localhost works perfectly with windows authentication $ sqlcmd -S localhost 1> sel...

0

I am trying to use the SQL Server integratedSecurity (jdbc: sqlserver: //x.y.z.w; databaseName = TEST; integratedSecurity = true) with java 1.8 on Linux but I get the following error: no mssql-jdbc...
Traverse asked 22/1, 2021 at 18:25

2

Solved

Need to insert a row if its not exist and update if exists. I've found this solution for MySQL: INSERT INTO table (id, name, age) VALUES(1, "A", 19) ON DUPLICATE KEY UPDATE name="A", age=19 Bu...
Lannielanning asked 21/2, 2019 at 9:20

5

Solved

Can some one please guide me to understand which jar file i need to include in my application to be able to set up a jdbc connection with ms sql server. thanks in advance.
Suspicious asked 19/3, 2010 at 8:54

1

Solved

I have a SpringBoot app, where I use jdbcTemplate to insert a row to a mssql int numOfRowsAffected = remoteJdbcTemplate.update("insert into dbo.[ELCOR Resource Time Registr_] " + "( [Entry No_], ...
Rybinsk asked 24/5, 2018 at 10:47

2

I have a SQL Server database with jpeg images stored as hex (0xFFD8...) Is there a way to do a query where result will be in base64 instead of hex? I tried to google but I can't find anything like ...
Otilia asked 20/1, 2017 at 7:40

0

I need to connect to High Availability (HA) / Desaster Recovery (DR), also known as HADR, enabled SQL server 2012 using AD account from Java on Linux. integratedSecurity is not an option since it...

3

Solved

I am running my application on a WildFly 10 server. I do not wish to place my connection details on my application src codes thus am trying to place it inside WildFly 10 server itself. However I ...
Leaf asked 29/11, 2016 at 7:28

6

Solved

Okay, I'm confused. My SQL Server JAR is here: Volume in drive C has no label. Volume Serial Number is 8008-2D93 Directory of c:\temp 03/07/2014 09:38 AM <DIR> . 03/07/2014 09:38 AM &lt...
Suzysuzzy asked 7/3, 2014 at 15:1

1

Solved

I have a Student class with the following attributes: Name, Department, Address, Grade. Now I have an ArrayList that contains some Student objects like this, List<Student> stuList = new ...
Scranton asked 12/4, 2016 at 13:59

1

I want to store tables metadata into other table.So how to get all constraint and its type like whether it primary , unique or foreign key in MS SQL server. table_name | constraint_name | constrain...
Transmissible asked 2/1, 2015 at 11:38

2

I have trigger UPDATETRIGGER on table TEST, It was written to get called when the TEST table is updated. Now in this UPDATETRIGGER is updating a column of the same TEST table. Will this be recur...
Lipfert asked 11/11, 2014 at 6:6

5

I have some Java code that accesses SQL Server 2005 which looks something like this: CallableStatement cstmt = ...; ... // Set input parameters cstmt.registerOutParameter(11, Types.INTEGER); cstmt...
Floaty asked 13/5, 2009 at 15:25
1

© 2022 - 2024 — McMap. All rights reserved.