Viewing 15 posts - 5,596 through 5,610 (of 59,089 total)
Sorry... erroneous post removed.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 25, 2021 at 4:17 pm
Just be careful what you use the Developers Edition for. If the databases on your SQL Express system are production databases in any way, shape, or form, it's a flagrant...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 25, 2021 at 4:09 pm
From the Article:
I've seen friends at Microsoft change departments, products, etc. every year or two.
Actually, that explains a lot. While it may keep people from getting "bored" or "stagnant", it...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 25, 2021 at 4:02 pm
I do not consider "2359 to 2359" a valid case, as that might imply it may also span multiple days
Ordinarily, I'd agree but to consider the span of multiple...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 25, 2021 at 12:38 pm
Removed... near duplicate post.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 25, 2021 at 12:35 pm
Just to continue, if you limit things to the original problem, solving the "spans midnight" problem is almost trivial. You just have to know the "gazintas". 😀 In this case,...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 25, 2021 at 2:12 am
Except - you have to execute SQLCMD from *something*. That would be either a DOS command window or Powershell - so if you are going to be using Powershell,...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 23, 2021 at 11:27 pm
I work on SQL server 2012 I need to search on table partswithcompany that
have 40 million rows .
when make select SearchParts, CompanyId from partswithcompany where CompanyId=1234 and SearchParts='A5ghf7598fdmlcpghjk'
it is...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 23, 2021 at 4:21 pm
Yes. Something is temporarily blocking all those processes and you need to find out what that is.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 23, 2021 at 4:17 pm
The following will work whether the source data is an INT or VARCHAR(). Of course, it has the same caveat that Phil mentioned.
SELECT end_time/100*60 + end_time%100...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 22, 2021 at 11:14 pm
My recommendation would be to contact the people that wrote the "Get-DbaProductKey" PoSh snippet and ask them.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 22, 2021 at 10:49 pm
I work on sql server 2012 . I face issue I can't generate unique Id from merge or concave both columns
Search Parts and Company ID and generated Id must...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 22, 2021 at 10:45 pm
DATEDIFF(minute, CONVERT(varchar,[begin_time],8) , CONVERT(varchar,[end_time],8)) as [duration]
this was not worked for me could you please help above 3 formats how to get duration
What are the original datatypes...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 22, 2021 at 10:00 pm
Just checked with the developer and rows are created all at once with no updates.
Just checked with the developer and rows are created all at once with no...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 22, 2021 at 4:46 pm
This seems like homework. Can you post what you've tried, please?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 22, 2021 at 2:57 pm
Viewing 15 posts - 5,596 through 5,610 (of 59,089 total)