Viewing 15 posts - 946 through 960 (of 59,063 total)
I have to admit, I'm totally amazed about the number of people that participate on the QoD and on Polls on linked in.
I'm also amazed at the number of wrong...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2023 at 3:48 pm
This minor change (IIRC)...
BULK INSERT OSPRetail.dbo.DimProduct5
FROM 'C:\Users\User\Downloads\data feed.csv'
WITH ( FORMAT = 'CSV',
FIELDTERMINATOR = ',',
ROWTERMINATOR = 0X0A);
Also, read up a bit on the BULK INSERT and learn the...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2023 at 2:53 am
Its managed SQL Server Business critical, with the latest version, and MS automated management of Log file.
The issue here is there is purge and archival of data creating lots...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 10, 2023 at 1:00 pm
If it was included then yes. Sorry, this is a different data set I put together. But the idea, process, and everything about the data is very similar.
Please...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 10, 2023 at 12:36 pm
I have a large SQL database with millions of records, and I've identified duplicate entries. What's the most efficient way to find and remove these duplicates without compromising database...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 10, 2023 at 12:28 pm
Thanks, Jeff. I made the assumption that the OP did not have a table 'TBL' containing a single column 'COLUMN1' and therefore that the addition of a suitable PK...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 10, 2023 at 12:16 pm
hi,
i have coma separated vales in a table. what i want to reverse it like 'CLP,CAD,GBP' pls tell me how it can be done WITH OUT USING XML IN...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 10, 2023 at 11:44 am
Great question, Steve. It gave me an idea for something else that I need to do.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 8, 2023 at 8:17 pm
Though its Azure MI Business critical , I see fragmentation, Any script to identify which IX's need to be rebuilt ,as Frag is over 50%.
I will add REBUILD WITH...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 7, 2023 at 8:08 pm
Or - you could add a file and use EMPTYFILE on the original file. Once the original file is empty it can then be removed.
Have you tried this when...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 6, 2023 at 11:34 pm
Removed... I somehow duplicated the post below.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 6, 2023 at 11:33 pm
Why are you duplicating this question? I don't see a link suggesting this is spam, but the answers to that almost identical question are going to be what...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 5, 2023 at 8:51 pm
"Bumping" this post because it's hidden by the "Don't display the first post of a new page" problem this forum has, which I wish they'd fix. This has been a...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 4, 2023 at 10:27 pm
The issue with using QUOTENAME is that it returns the result as an NVARCHAR(258). The OP started out with a VARCHAR().
In this case, the resulting STRING_AGG() returns an NVARCHAR(4000).
--Jeff Moden
Change is inevitable... Change for the better is not.
November 4, 2023 at 10:14 pm
Just "bumping" this because of the "1 Post on another Page won't display" problem that this forum has. I really wish they'd fix this issue. 🙁
--Jeff Moden
Change is inevitable... Change for the better is not.
November 4, 2023 at 10:03 pm
Viewing 15 posts - 946 through 960 (of 59,063 total)