Viewing 15 posts - 7,741 through 7,755 (of 59,072 total)
##csvtemp only contains 6 lines.. so it is not big...
set @sql = 'bcp "SELECT Col1,Col2,Col3,Col4,Col5,Col6,Col7,Col8,Col9,Col10,Col11,Col12,Col13,Col14,Col15,Col16,Col17,Col18,Col19,Col20,Col21,Col22 FROM ##csvtemp" queryout '+@processedFolderLocation+'/"'+@csvFileName+'" -c -d ' + DB_NAME() + ' -t, -S '+...
February 13, 2020 at 10:50 pm
thanks alot 🙂
It worked 🙂
Excellent. My next question would be... why are you denormalizing/duplicating data? For that matter, why does the INFO table have a DOB column to begin...
February 13, 2020 at 10:08 pm
geek12 wrote:Would appreciate more advices 😉
A post on twitter is called a "tweet".
A user of the service is called a "twit".
Using the service while at work is called "twerking".
BWAAAAA-HAAA-HAAA!!!! ...
February 13, 2020 at 10:02 pm
I GOT IT, I figured it out, Thank you very much, I am very appreciative for your assistance.
That's nice. Would you mind sharing what you did... maybe even as...
February 13, 2020 at 9:55 pm
Hold the phone here... inserting 5000, 10000, 15000 rows isn't a large, time consuming task for SQL Server. Why do you think you need to "chunk" the data in this...
February 13, 2020 at 4:09 pm
Hi sschasing, I doing a few inserts first, and then a larger conversation starts from source to target. I thought it may be simple to do a few inserts...
February 13, 2020 at 2:50 pm
That is a scary thought to most people. Change!
I wonder how many people actually fear change? I don't fear change for the better. I don't believe anyone actually does. ...
February 13, 2020 at 3:10 am
My question would be... how would you be accessing the documents and what would be the search criteria for finding a given document? Also, are you going to be searching...
February 13, 2020 at 2:48 am
If you're doing an insert where you don't want the constraints checked, you can script out the constraints on the table, then drop them, do the import, then add...
February 13, 2020 at 2:12 am
Hold the phone on that... consider the following graphic from your original post...
According to that graphic, your first database is 2.5 TERA-Bytes...
February 13, 2020 at 1:53 am
I agree with everything you said but, with all the really cool stuff that's been built into SQL Server in the last 8 years, couldn't you have cited...
February 11, 2020 at 3:42 pm
I agree with everything you said but, with all the really cool stuff that's been built into SQL Server in the last 8 years, couldn't you have cited a better...
February 11, 2020 at 3:17 am
May I ask why you are using CTEs in this manner when you could just use the tables themselves?
That was going to be my exact question.... or is this...
February 11, 2020 at 3:13 am
Hi
is there a way to identify empty columns.
I'm going through a new database right now and dropping columns that have never been used.
I've been generating SQL statements to get...
February 10, 2020 at 3:13 pm
You can get information of the DBCC executions by querying the default trace file for the Audit DBCC Event. It will have login, host name, application name, etc.
Sue
Just a...
February 10, 2020 at 1:52 pm
Viewing 15 posts - 7,741 through 7,755 (of 59,072 total)