Notes on the June 11, 2015 ONETUG Meeting
I attended the monthly ONETUG meeting last night to do a SQL presentation focused on developers. Same location as last...
2015-06-12
371 reads
I attended the monthly ONETUG meeting last night to do a SQL presentation focused on developers. Same location as last...
2015-06-12
371 reads
I’m expecting Should Salary Information Be Confidential? to draw a wide range of comments. I’m curious to see if many will be...
2015-06-05
352 reads
Really late posting these, forgot to put on my task list!
About 20 attendeesLots of good questions, and I saw quite...
2015-06-03
384 reads
It’s almost summer and that means it’s time for a trip to South Florida for SQLSaturday #379. I’ll be doing my...
2015-06-02
342 reads
It’s been a while since I wrote a question of the day for SQLServerCentral. I wrote Pounds of Formatting Fun...
2015-06-02
287 reads
I attended the online Town Hall yesterday, the second one that PASS has held this year. The recording should be...
2015-05-28
854 reads
I’ll be returning to ONETUG just less than a year from my last presentation, delivering technical content and evangelizing for...
2015-05-25
311 reads
I’ve been busy with other stuff lately and haven’t been able to put much time into this yet, but capturing...
2015-05-19
357 reads
I’ll be presenting Avoiding, Detecting, and Repairing Database Corruption and probably talking a little bit about career development during the...
2015-05-18
317 reads
I’ll start by saying the intent of the notes isn’t to complain, at least too much. I’m looking for opportunities....
2015-05-18
365 reads
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
Hi everyone I am writing an SP where there is logic inside the SP...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers