Viewing 15 posts - 16 through 30 (of 1,491 total)
As to the TOP, you got it backwards.
I have just tried to create a view with an ORDER BY in SQL 2019 and got the following:
Msg 1033, Level...
July 1, 2025 at 1:11 pm
This shows how to connect to a local SQL Server using ADF:
Tutorial: How to access on-premises SQL Server from Data Factory Managed VNet using Private Endpoint
Presumably you would then...
July 1, 2025 at 12:43 pm
I think a view with an ORDER BY needs TOP in the SELECT.
Also, selecting from a view with an ORDER BY does not guarantee order of the result. An ORDER...
July 1, 2025 at 11:21 am
If you enter a NickName it will appear in the DisplayName dropdown.
July 1, 2025 at 9:28 am
I doubt it is ready for production use yet but, depending on your timelines, you might want to look at Mirroring for SQL Server in Microsoft Fabric (Preview)
July 1, 2025 at 9:19 am
Why not just add a number to each line before importing? With PowerShell:
Get-Content -Path "Original.txt" |
ForEach-Object { "$($_.ReadCount),"$_"" } |
Set-Content -Path "OriginalwithNumbers.csv"
ps back-tick " to get...
June 30, 2025 at 6:49 am
Probably due to its use in Data Engineering and Data Science, Python has a number of libraries to extract text from PDFs. eg PDFPlumber.
June 29, 2025 at 10:54 am
3. Copy (with surrogate keys) the fact sales records that will survive to the vm (our dev sql server dw)
You will not be able to use a developer license...
June 26, 2025 at 2:45 pm
I recommend archiving fact table rows to a Parquet file using Python. Parquet is a columnar storage format supported by many data analytics platforms and SQL Server can query...
June 26, 2025 at 12:40 pm
I find this area somewhat confusing, especially since many of the products extend beyond traditional data warehouses. For example, Fabric offers real-time data analytics and event streaming through Event Hubs....
June 24, 2025 at 10:05 am
The question leads to another question:
As the result of GENERATE_SERIES() is a set, can it really be ordered without an ORDER BY clause?
June 13, 2025 at 8:52 am
June 10, 2025 at 4:47 pm
Isn't there a way for SS to exclude the record when importing a CSV file?
You can write a script component in C# but the logic to preprocess the CSV...
June 10, 2025 at 6:23 am
ensure the file is a correctly built CSV file - if it is then you can load it using the format=CSV above - if it not then get...
June 9, 2025 at 8:46 pm
Even ignoring connection pooling, the question is not clear. It seems to have something to do with islands and gaps. Here is an example which might help. Good luck.
June 7, 2025 at 9:38 pm
Viewing 15 posts - 16 through 30 (of 1,491 total)