Viewing 11 posts - 1 through 11 (of 11 total)
I haven't examined the ANSI standard compared with T-SQL. It does seem like some of the stuff from there related to the OVER() and window functions has been implemented, but...
September 5, 2022 at 4:16 pm
I dont have access to SQL22, but looking at GREATEST/LEAST, I assume that using them in a WHERE clause will make the query NON-SARGEABLE.
SELECT P.Name, P.SellStartDate,...
September 5, 2022 at 4:15 pm
Thanks for the complement, Jeff. I think you've written some great articles and I always look forward to reading them.
I'll mess around with it and see. I think using the...
August 25, 2020 at 3:19 pm
I haven't done this myself. I've mostly been running PoSh interactively for administrative scripting items. All my Agent jobs are T-SQL based or they use some batch scripting.
I was looking...
August 24, 2020 at 6:25 pm
Hi FRank, useful post, all works fine except when I try the best way by running
$SqlSqlConn = New-Object System.Data.SqlClient.SqlSqlConnection("Server = $Server; Database = $Database; Integrated Security...
August 24, 2020 at 12:16 am
My question would be... "This is good but how could you do this from a job in SQL Server"?
That's a great question. I'll see if I can write an...
August 24, 2020 at 12:16 am
I liked your article, and it sparked a little more research on my part. I remembered reading something about Filtering Objects vs Where-Object, and wanted to know what is the...
August 17, 2020 at 3:56 pm
There are many editors available for Powershell - and the default Windows Powershell ISE works quite well for basic scripting. It allows writing the script and executing command line...
August 17, 2020 at 2:16 pm
Thank you very much for the very informative article! I really gained an understanding from the way you explain things. I would like to understand why we see what...
August 17, 2020 at 1:29 pm
Get-Module only lists the currently loaded modules, if you want a list of all installed modules you need to use 'Get-Module -ListAvailable'.
Thanks for this, I keep forgetting about that...
August 17, 2020 at 1:27 pm
Thanks.
The SSMS thing works well, but it's manual when trying to save the data. I use PoSh to let this run regularly, as you noted, in an automated fashion.
August 4, 2020 at 3:45 pm
Viewing 11 posts - 1 through 11 (of 11 total)