Viewing 15 posts - 16 through 30 (of 1,489 total)
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
This is one of the main problems with CSVs. (Horrible things)
If you can get the CSV generated differently then either get every field enclosed in "" or use something like...
June 7, 2025 at 10:01 am
I have just had a look at this on an iphone. The iOS Shortcuts app can be used.
ShortCuts | Automation | New Automation
When: When I Get an Email Subject Contains...
June 3, 2025 at 3:22 pm
Viewing 15 posts - 16 through 30 (of 1,489 total)