Viewing 15 posts - 22,906 through 22,920 (of 59,067 total)
I've found that really poor indexes will also cause frequent and, sometimes, massive timeouts on the application side. If the application is doing inserts into a table that has...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 6:13 pm
Jay@Work (8/13/2014)
Autogrowth is disabled on the mdf/ndf files so that they can be used round robin (1...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 6:07 pm
Lynn Pettis (8/14/2014)
Jeff Moden (8/14/2014)
dwilliscp (8/14/2014)
Jeff Moden (8/13/2014)
I must admit,...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 6:01 pm
Sean Lange (8/14/2014)
tcronin 95651 (8/14/2014)
sorry but that is the real world, that's why I referenced 3rd party app, which rhymes with 3rd party c&#*#rap. Cant change
LOL. Why can't you...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 11:25 am
@SixStringSQL (8/14/2014)
Thanks for the replies, all...Question: Is there no benefit of using synonyms over renaming the base tables themselves?
I like Synonyms for this type of thing for several reasons....
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 8:15 am
mqbk (8/14/2014)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 7:31 am
dwilliscp (8/14/2014)
Jeff Moden (8/13/2014)
I must admit, I'm totally confused. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 14, 2014 at 7:28 am
austen.robinson (8/13/2014)
CREATE TABLE eventhistory (
Event_id number not null,
Event_Description varchar2(100),
Update_time date not null
);
CREATE TABLE currentevents (
Event_id number not null,
Event_Description varchar2(100
...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 9:05 pm
Thanks, Lynn. I read the original post incorrectly and didn't run your code to see. Thanks for the correction.
I must admit, I'm totally confused. If the purpose...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 8:37 pm
As a bit of a sidebar, I'm always amazed at questions like this. Why is it that so many people don't trust the people they specifically hired to be...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 8:30 pm
If you run the following code...
sp_help 'sys.objects'
... and look at the "Collation" column has in it, you'll see why the problem exists. You'll need to use the COLLATE clause...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 8:22 pm
pawana.paul (8/13/2014)
Hello Ed,Looks like this session is to attend inperson. Is it available online by any chance?
Regards,
Attending in person would be seriously beneficial, but it's not necessary. I just...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 8:14 pm
pawana.paul (8/12/2014)
Is it possible to share 2 hours lecture you written on this topic? Please send me on pawana.paul@gmail.com, if possible.
Thanks...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 8:11 pm
dwilliscp (8/13/2014)
Do the strings always end with a dash, space, numeric value?
If so, using the setup from Sean, look at the code for the second column.
declare @Table table (someString varchar(25))
insert...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 7:44 pm
mqbk (8/13/2014)
Recently, I partitioned one of my largest tables into multiple monthly field groups.
Now that you have your answer, I'm curious as the "How" you partitioned the table...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 13, 2014 at 7:18 pm
Viewing 15 posts - 22,906 through 22,920 (of 59,067 total)