Viewing 15 posts - 1,501 through 1,515 (of 59,067 total)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 5, 2023 at 3:38 am
I'm trying to create a clustered index on a very large heap table. Below is the script i'm using to perform the creation job.
CREATE CLUSTERED INDEX...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 5, 2023 at 1:53 am
I just use BCP OUT using the Native format and then either BCP or BULK INSERT to import it on the target. Obviously, there needs to be a folder somewhere...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2023 at 11:49 pm
indeed.
Been there, did that.
You can bring a horse to the water, but you cannot make it drink.
You can if you hold its head underwater and hook a shop-vac up...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2023 at 2:35 pm
As a bit of a sidebar and without knowing the particulars, it's pretty much a worse practice to make calls within a stored procedure to an actual IP address. If...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 2, 2023 at 2:26 pm
Awesome. Looking forward to it.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 1, 2023 at 7:00 pm
Thanks, Michael.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 1, 2023 at 6:59 pm
I submitted a few sessions, got accepted, and realized that I had a conflict that weekend!!!!!!!!!!!!!!
You've let Paul P. know, correct?
--Jeff Moden
Change is inevitable... Change for the better is not.
May 1, 2023 at 2:41 am
I know what you were looking for but there's actually no correct answer because of the VARCHAR(20) thing. The correct format of the correct answer is 23 characters long and...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 1, 2023 at 1:34 am
To be honest, though, the tool seems to be based only on column names. It doesn't actually look for columns that, for example, look for 9 digit number or strings...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 30, 2023 at 3:58 am
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
Viewing 15 posts - 1,501 through 1,515 (of 59,067 total)