Viewing 15 posts - 7,411 through 7,425 (of 59,072 total)
Whew!!! Nice one, Steve!! You had me going there! I was thinking that I should plan on retiring sooner than I really wanted because even the cursors in Oracle are...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2020 at 1:19 am
Very nice collection of algorithms, Jeffrey. I've got one more for you to add to your collection.
Peter "Peso" Larsson came up with the following basic method quite a while back. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2020 at 1:05 am
We have no clue by what you mean by "unexpected results".
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 8:38 pm
For me, it was the initial run of having an extra 90 million rows. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 8:35 pm
Never used geometry by I suppose some this like this
SELECT N,
GEOMETRY::STGeomFromText('POLYGON(('+CAST(N as varchar(10))+' 0, 1 1, 0 1, 0 0, 1 0))', 0)
FROM (VALUES(1))...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 4:59 pm
Anyone?
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 4:01 pm
Use your imagination. 😀 You can use it to figure out what causes the most blocking at certain times of the day not to mention that if you fix such...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 3:59 pm
Open Windows Powershell ISE - this is the development tool for Powershell included with Windows 10.
You will need to include 2 variables that I excluded from the post. Those...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 3:27 pm
It's a shame that Brent didn't subscribe to this thread because I think he's pretty much spot on.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 1:24 pm
I recommend that f you have more than one app, use more than one service login. Each app should have it's own so you can more easily trace things like...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 3:27 am
Just plan on such a thing doing full table scans because the JOIN criteria will become non-SARGable.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 2:19 am
Hey Jeff,
sadly not my choice, but they are deploying an application, and the application is requesting to create some schemas, so, I hoped they would give me the scripts...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 2:09 am
Ok... so we have the following test code from the article...
DECLARE @tab TABLE(Col1 GEOMETRY);
INSERT @tab(Col1)
SELECT GEOMETRY::STGeomFromText('POLYGON((1 0, 1 1, 0 1, 0 0, 1 0))', 0) --...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 1:35 am
Privacy has always mattered. We just gave the up the first time we opened a bank account or bought a house or bought a car or applied for/used a credit...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 1:10 am
The next question would be.... why are you giving users privs to create schemas?
--Jeff Moden
Change is inevitable... Change for the better is not.
March 31, 2020 at 12:59 am
Viewing 15 posts - 7,411 through 7,425 (of 59,072 total)