Viewing 15 posts - 1,531 through 1,545 (of 59,082 total)
That’s the thing about tempdb, it’s true to it’s name. Nothing you put there is truly permanent. By using normal create commands in tempdb you don’t have to worry...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 30, 2023 at 3:41 am
I would say... don't make it a permanent table in TempDB. It may be justification for them to commit homicide and hide the body.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 29, 2023 at 12:50 am
If you use INSERT/SELECT FROM (VALUES)x(somecol1, somecoletc...), there appears to be no limit. I've done 50,000 rows as a one-off.
You could make a temporary Linked Server to your machine. You...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 28, 2023 at 4:17 pm
I'd love to come see that Jeff, but with other commitments I will not be able to attend. I hope that there will be a recording that we might...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 28, 2023 at 3:59 pm
Good morning
I have a local sql server 2000 database with an old application, and I would like to make a copy of this database on sql server 2019 which...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 28, 2023 at 12:36 pm
Did you previously try Grant Fritchey's solution at your previous very similar post?
--Jeff Moden
Change is inevitable... Change for the better is not.
April 28, 2023 at 12:19 pm
This will sound a bit stupid or as a shot in the dark but, when you select @@ServerName, does it return the instance name or something else?
--Jeff Moden
Change is inevitable... Change for the better is not.
April 27, 2023 at 6:00 pm
You could also try sjones@sqlservercentral.com (Steve Jones...the editor).
--Jeff Moden
Change is inevitable... Change for the better is not.
April 27, 2023 at 5:24 pm
Contact WebMaster@SQLServerCentral.com and let them know. They sometimes miss things.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2023 at 8:35 pm
Sorry for my slow reply.
I created the user from login. At the server and database level they are only in the public role and I can't see anything relevant...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2023 at 8:32 pm
Here is a different approach.
Niiiicccceee! I'm going to do some performance tests there because, although it's not a super common request, it's a request that has happened often enough...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2023 at 6:02 pm
The prompt was based on minimal code
this sql code omits a 2nd column with which we could order the rows. Could you add a date...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2023 at 2:41 am
@richard-2... this is one of the problems with not providing data in a readily consumable test table... everyone make up their own mind as to what the column names and...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2023 at 2:39 am
I think the way to do this is to eliminate dupes while maintaining the order. Then the Lead/Lag comparison of the difference between the previous point goes from positive and...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2023 at 12:35 am
p.s. I'm thinking that your good shot at it needs (as you imply) a little tweaking. Try using the following data and see what I mean...
from (values (3),(10),(9),(8),(8),(8),(11),(12),(13),(12),(11),(6),(3),(2)) v(n)
Results:
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2023 at 12:24 am
Viewing 15 posts - 1,531 through 1,545 (of 59,082 total)