Viewing 15 posts - 31 through 45 (of 113 total)
Thank you Steve for the response. It helps me to plan.
April 3, 2023 at 1:31 pm
Hi Steve,
Are systems from DC2 being shut down and physically moved or copied to a new place (DC3).
Yes DC2 is going to be shutdown and physically moved to new place.
Just...
March 31, 2023 at 8:48 am
Go the result after slight change. Thank you J. Drew Allen.
WITH Server_Databases AS
(
select a.Server,d.dbname [DB_name], COUNT(d.dbname) OVER(PARTITION BY dbname) AS cnt
...
March 28, 2023 at 4:10 pm
Sorry, I was in legacy server. Now i have run the same in SQL 2019.
Following is the error
Msg 207, Level 16, State 1, Line 52
Invalid column name 'dbname'.
Got it -...
March 28, 2023 at 3:55 pm
Thanks, I am getting following error. Also, I do not want to pass any where clause.
I am thinking, following is giving me what I need, but I do not know...
March 28, 2023 at 3:40 pm
Yes, default.
utf8mb4 - utf8mb4_0900_ai_ci
January 10, 2023 at 3:01 pm
Thank you, I am planning the same to update some symbol.
I have tried different line/row separator, could not find how to export properly. The load data is working good if...
January 10, 2023 at 3:57 am
CR LF is breaking my data load into mysql, I have updated CR LF as space ' ' and load is working good.
January 9, 2023 at 4:00 pm
I thought of using quotename. select * is not working some places found that because of CR LF.
January 9, 2023 at 4:34 am
Sorry, I just shown as example.
I am using STRING_AGG from INFORMATION_SCHEMA.columns and other system table to populate all the columns to BCP.
January 7, 2023 at 2:45 am
The other option is to convert those CR and LF to text values that you can then convert after importing. If you use a tab delimited - or pipe...
January 6, 2023 at 4:49 am
HI,
fields terminated by "|" (the delimiter you used above), enclosed by '"' escaped by '"'
I have used the same test. But wherever there is a split it load as zero...
January 6, 2023 at 4:45 am
No Guru, I am doing test, I tried to use quotename(field3,CHAR(34)) still in the output i am seeing split. I think quotename is not working.
To add: the split comes with...
January 5, 2023 at 2:16 pm
Thanks for the CR LF note, I am trying to bcp out from mssql and load to mysql.
January 5, 2023 at 12:44 pm
Yes, I used notepad++. PFA image. BCP out is coming like this.
First two columns are integer
January 5, 2023 at 4:47 am
Viewing 15 posts - 31 through 45 (of 113 total)