August 17, 2016 at 12:10 pm
tindog (8/17/2016)
ChrisM@Work (8/17/2016)
Luis Cazares (8/17/2016)
Brandie Tarvin (8/17/2016)
Eirikur Eiriksson (8/17/2016)
BrainDonor (8/17/2016)
ChrisM@Work (8/17/2016)
We have git hubs all over the UK. They're also known as Weatherspoons.You owe me a new keyboard...
π
...just managed to save mine
π
I have apparently missed the joke here.
It might be a British thing, with a wrong spelling of Wetherspoons[/url]? (which would make googling it a bit more difficult)
Yes it is, top work Luis. Wetherspoons is known over here for being inhabited all day long by old men because the beer is cheap (it's often very good too). So they are hubs for all the local old gits.
Edit: as Blobby well knows, they are also famous for their stonkingly good breakfasts.
"Good"? I hope that's a joke.
Three or four years ago they did reasonable breakfasts. Now the ones I know do absolutely rubbish breakfasts, the worst and most overpriced in town. There's a nice little pub just up the road from the local Wetherspoons where I am this month, and it does a good breakfast for a lot less than Wetherspoons charges for a not very good one; and it does an excellent large breakfast too, more eggs, more bacon, more sausage, more beans, more toast, and more tomato than Wetherspoons' standard breakfast and it costs quite a bit less too.
Tom
August 17, 2016 at 12:14 pm
drew.allen (8/17/2016)
I'm writing an article explaining my solution to Credits and Debits and am looking for two or three people to review it before I submit it. Any takers?Drew
Definitely.
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
August 18, 2016 at 12:46 am
jasona.work (8/17/2016)
Man, take a week and change off from here, and have a lot to catch up on...Forums being moved to a new back-end, cheap beer pubs with hair in the food...
At least my back-up DBA (who's an Oracle goddess) was able to keep the nitty-gritty caught up so I wasn't inundated when I got back to work today.
what is the new back-end?? MySQL?
August 18, 2016 at 2:18 am
Wow. For the first time in *mumble* years as a SQL guy, I've been asked "how do I get the date in SQL Server"
erm... SELECT GETDATE()
Thanks Jeff! Without you, I would never have known that answer.
*cough*
Except the asker then said "no, I just want the date part, no time" And she's running on SQL2005, so no DATE. Bloody users, changing the requirements halfway through the project...
Thomas Rushton
blog: https://thelonedba.wordpress.com
August 18, 2016 at 2:54 am
TomThomson (8/17/2016)
tindog (8/17/2016)
ChrisM@Work (8/17/2016)
Luis Cazares (8/17/2016)
Brandie Tarvin (8/17/2016)
Eirikur Eiriksson (8/17/2016)
BrainDonor (8/17/2016)
ChrisM@Work (8/17/2016)
We have git hubs all over the UK. They're also known as Weatherspoons.You owe me a new keyboard...
π
...just managed to save mine
π
I have apparently missed the joke here.
It might be a British thing, with a wrong spelling of Wetherspoons[/url]? (which would make googling it a bit more difficult)
Yes it is, top work Luis. Wetherspoons is known over here for being inhabited all day long by old men because the beer is cheap (it's often very good too). So they are hubs for all the local old gits.
Edit: as Blobby well knows, they are also famous for their stonkingly good breakfasts.
"Good"? I hope that's a joke.
Three or four years ago they did reasonable breakfasts. Now the ones I know do absolutely rubbish breakfasts, the worst and most overpriced in town. There's a nice little pub just up the road from the local Wetherspoons where I am this month, and it does a good breakfast for a lot less than Wetherspoons charges for a not very good one; and it does an excellent large breakfast too, more eggs, more bacon, more sausage, more beans, more toast, and more tomato than Wetherspoons' standard breakfast and it costs quite a bit less too.
I've never had a bad pint in a Wetherspoons. They're a bit McPub in that you can walk into one anywhere and know what you're going to get. Don't get me wrong, I'll pick the local 'independent' where I can but sometimes the choice of independent can be a bit limited. Up until recently, the only pub in Bury worth refuelling in during an extended sampling of refreshing beverages was the Wetherspoons.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
August 18, 2016 at 5:27 am
BLOB_EATER (8/18/2016)
jasona.work (8/17/2016)
Man, take a week and change off from here, and have a lot to catch up on...Forums being moved to a new back-end, cheap beer pubs with hair in the food...
At least my back-up DBA (who's an Oracle goddess) was able to keep the nitty-gritty caught up so I wasn't inundated when I got back to work today.
what is the new back-end?? MySQL?
You'd have to ask Steve that question...
π
August 18, 2016 at 6:55 am
ThomasRushton (8/18/2016)
Wow. For the first time in *mumble* years as a SQL guy, I've been asked "how do I get the date in SQL Server"erm...
SELECT GETDATE()
Thanks Jeff! Without you, I would never have known that answer.
*cough*
Except the asker then said "no, I just want the date part, no time" And she's running on SQL2005, so no DATE. Bloody users, changing the requirements halfway through the project...
*cough*
SELECT CONVERT(DATETIME,CONVERT(CHAR(10),GETDATE(),101),101);
We have that happen all the time in our environment. EDIT: 101 is assuming you're using MM/DD/YYYY in your date formatting. Check BOL under CONVERT to get the code you need if that's not true. We used this in SQL 2000, 2005, etc. Still use it because bloody csv files that need dates formatted for other systems and legacy DATETIME columns that cannot be converted to DATE upon pain of being thrown in the lagoon with the alligator.
August 18, 2016 at 7:30 am
Brandie Tarvin (8/18/2016)
ThomasRushton (8/18/2016)
Wow. For the first time in *mumble* years as a SQL guy, I've been asked "how do I get the date in SQL Server"erm...
SELECT GETDATE()
Thanks Jeff! Without you, I would never have known that answer.
*cough*
Except the asker then said "no, I just want the date part, no time" And she's running on SQL2005, so no DATE. Bloody users, changing the requirements halfway through the project...
*cough*
SELECT CONVERT(DATETIME,CONVERT(CHAR(10),GETDATE(),101),101);
We have that happen all the time in our environment. EDIT: 101 is assuming you're using MM/DD/YYYY in your date formatting. Check BOL under CONVERT to get the code you need if that's not true. We used this in SQL 2000, 2005, etc. Still use it because bloody csv files that need dates formatted for other systems and legacy DATETIME columns that cannot be converted to DATE upon pain of being thrown in the lagoon with the alligator.
There's this too:
SELECT DATEADD(DAY,DATEDIFF(DAY,0,GETDATE()),0)
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
August 18, 2016 at 8:01 am
Brandie Tarvin (8/18/2016)
ThomasRushton (8/18/2016)
Wow. For the first time in *mumble* years as a SQL guy, I've been asked "how do I get the date in SQL Server"erm...
SELECT GETDATE()
Thanks Jeff! Without you, I would never have known that answer.
*cough*
Except the asker then said "no, I just want the date part, no time" And she's running on SQL2005, so no DATE. Bloody users, changing the requirements halfway through the project...
*cough*
SELECT CONVERT(DATETIME,CONVERT(CHAR(10),GETDATE(),101),101);
We have that happen all the time in our environment. EDIT: 101 is assuming you're using MM/DD/YYYY in your date formatting. Check BOL under CONVERT to get the code you need if that's not true. We used this in SQL 2000, 2005, etc. Still use it because bloody csv files that need dates formatted for other systems and legacy DATETIME columns that cannot be converted to DATE upon pain of being thrown in the lagoon with the alligator.
I've found that the alligator is usually the best company when such things happen. π
--Jeff Moden
Change is inevitable... Change for the better is not.
August 18, 2016 at 8:37 am
jasona.work (8/18/2016)
BLOB_EATER (8/18/2016)
jasona.work (8/17/2016)
Man, take a week and change off from here, and have a lot to catch up on...Forums being moved to a new back-end, cheap beer pubs with hair in the food...
At least my back-up DBA (who's an Oracle goddess) was able to keep the nitty-gritty caught up so I wasn't inundated when I got back to work today.
what is the new back-end?? MySQL?
You'd have to ask Steve that question...
π
SQL Server. One of the requirements. There were a lot of BB candidates using MySQL or PostgreSQL or something else. Somewhat said we just wanted to be on MSSQL.
Limited us to just a few items. Discourse doesn't run on SQL Server, so that was out. Disappointing as I wanted to fork that and add some items to it.
I think we'll stick with the upgrade to this forum, which seems to be going well. They applied a patch and then went to work on integration with existing code the other day, just a day or two test to see how many things broke.
August 18, 2016 at 8:59 am
We've got new laptops today at the office. Mine is missing SSMS. I guess I'll have to wait to be productive for some days (weeks?)
August 18, 2016 at 9:07 am
Luis Cazares (8/18/2016)
We've got new laptops today at the office. Mine is missing SSMS. I guess I'll have to wait to be productive for some days (weeks?)
Better brush off those OSQL skills.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
August 18, 2016 at 9:35 am
Funny for the day:
August 18, 2016 at 10:07 am
Luis Cazares (8/18/2016)
We've got new laptops today at the office. Mine is missing SSMS. I guess I'll have to wait to be productive for some days (weeks?)
August 18, 2016 at 10:13 am
Steve Jones - SSC Editor (8/18/2016)
Luis Cazares (8/18/2016)
We've got new laptops today at the office. Mine is missing SSMS. I guess I'll have to wait to be productive for some days (weeks?)
It's not a problem to find the packages, the problem is that I don't have Admin rights on the new laptop and can't install anything without approval through the company appstore.
At least I could recover my previous laptop and I'll use it for some time.
Viewing 15 posts - 55,381 through 55,395 (of 66,712 total)
You must be logged in to reply to this topic. Login to reply