Viewing 15 posts - 16,456 through 16,470 (of 59,067 total)
Suth (10/28/2016)
I'm currently trying delete data from a large database with the below code... But its taking quite a long time to delete 1000...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2016 at 6:55 am
At this point, it may just be easier and faster to make sure the initial settings for TempDB are correct and then bounce the SQL Server Service.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2016 at 6:35 am
barsuk (10/28/2016)
Local Backup of 750GB database (using LiteSpeed) takes about 30 mins
If, by "local backup", you mean putting the backup on the same box as the MDF/LDF files, that's pretty...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2016 at 6:08 am
wtren (10/28/2016)
It is, but normally SAN shared simultaneously by multiple Servers, that makes things different.
So do a test. Do 3 or 4 file parallel transfers, loads, or backups to...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 4:17 pm
Alan.B (9/28/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 4:03 pm
aaron.reese (10/28/2016)
... and then retro-fit the underlying data structure ...
I've not seen too many people that will actually do that. It's much easier just to do it right from...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 12:40 pm
wtren (10/27/2016)
SAN normally provide cache to ease it, and SAN is always random io pattern.
Are you saying that a SAN won't stream to multiple contiguous sectors on disk? If...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 8:15 am
S_Kumar_S (10/28/2016)
Thanks for an elaborated answer Jeff. I surely will look into the points you mentioned.
You bet. Thank you for the feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 8:05 am
Kazmerelda (10/28/2016)
Jeff Moden (10/27/2016)
Ed Wagner (10/27/2016)
Jeff Moden (10/26/2016)
Kazmerelda (10/25/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 8:02 am
Siberian Khatru (10/28/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2016 at 7:58 am
SQL_Kills (10/27/2016)
I think I have seen it somewhere but I'm not sure how to use the PRINT to displace the sublimate values on the BODY of the email?
Yabingooglehoo helps here...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2016 at 11:51 pm
rash3554 (10/26/2016)
I was given a text file with 750 columns and 5,000,000,000 rows. Size of text file is about 5GB. Is it possible to put these...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2016 at 7:34 pm
ptownbro (10/27/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2016 at 5:27 pm
SQL_Kills (10/27/2016)
I have the below table
CREATE TABLE [dbo].[BookOrderTest](
[TitleID] [int] NULL,
[Title] [nvarchar](100) NULL,
[Quantity] [int] NULL
) ON [PRIMARY]
insert into bookordertest values (1,'The Catcher in the Rye',3)
insert into bookordertest values (1,'The Catcher...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2016 at 5:04 pm
vsamantha35 (10/27/2016)
I have below PS script which will display the database file info like dbname, physicalfilename, size, free,used etc. It is working fine for 1 instance.
However,...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2016 at 4:13 pm
Viewing 15 posts - 16,456 through 16,470 (of 59,067 total)