Tagged Questions

1
vote
6answers
2k views

SQL putting two single quotes around datetime fields and fails to insert record

I am trying to INSERT into an SQL database table, but it doesn't work. So I used the SQL server profiler to see how it was building the query; what it shows is the following: declare @p1 int set ...
0
votes
2answers
45 views

Double Quotes at the end of each line while writing from/to .CSV

Can anybody help me remove these double quotes at the start/end of each line ? I have a large csv (800k rows) and want to create insert statements to get the data into a SQL DB. I know the code is ...
0
votes
1answer
67 views

how do i manipulate the query by using double quotes?

i have one database problem, if my sql is like this: Dim Username Username = request.form(trim("username")) Username = Replace(username,"'","''") Dim email email = request.form(trim("email")) email ...
0
votes
0answers
117 views

CSV File Adds Double Quotes to Imported Values

This is similar to other questions (such as Import .csv file through SSIS Package without double Quotes). However, I have the " as a Text Qualifier. When the SSIS package runs on a schedule, the ...
0
votes
4answers
160 views

Oracle SQL Syntax: Quoted identifier

I encountered SQL queries that looked like select "hello" from "foo"."bar" I found that we can have quoted and unquoted identifiers in Oracle: Database Object Names and Qualifiers ... A quoted ...