Viewing 15 posts - 9,151 through 9,165 (of 59,091 total)
I would like to know if corruption/unavaialability of one partition would impact whole DB? Will I still be able to access rest of the partitions? Can I take one...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 15, 2019 at 12:01 am
Hmmph... additionally, the "Free" online version is limited to 100 lines of code. The non-free versions aren't expensive but, considering the bug I found above, I wouldn't spend a nickle...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:51 pm
A lot of people make the mistake of thinking that a CTE is rendered as a separate object. Unless there is a "blocking operator" in the CTE, it's treated like...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:48 pm
Thanks for taking the time, Henrik. A lot of people will continue to be "stuck" in 2008 R2 for one reason or another and so I wanted to know what's...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:34 pm
Thanks for taking the time to post back, Randy. Since you're one of the folks that needs to support it, do you know how it works?
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:30 pm
Sorry... duplicate post removed.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:29 pm
Yowch. Thanks for the info, Phil.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:14 pm
Based on the fact that all execution plans are thrown away during a reboot or restart of the SQL Server Service and you said the server suffered a reboot or...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:10 pm
You first need to find out what the code that uses the table looks like. DW tables are NOT usually "proper normalized tables". For example, removing the "month" column or...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 11:04 pm
The OP is just spamming. It's a BS request to try to get past the SPAM filters. I hate these people and won't do business with any company advertised by...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 10:33 pm
Totally agreed and thanks for the the feedback, Jonathan. I also do the "partial backups" to exclude Read_Only file groups, sometimes in concert with having the large table in a...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 1:24 pm
hi Jeff, That is going to be useful, at least for me. But I could not get it to work on SQL Server 2008 R2 (not that it is...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 1:19 pm
Thanks Sreedhar... Ur expression works but the variable has datetime datatype so it converts it to 6/7/2019 5:00:00 PM format rather than 2019-06-07 17:00:00.000. Anyway Thanks for all ur...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 1:13 pm
-- SV: For understanding getdate() and things you need
select SYSDATETIME() as sysdatetime_FYI
, getdate() as getdate_FYI
, cast(getdate() as time) as getdate_TimeOnly
, CONVERT(varchar(15), cast(getdate() as time),100) as getdate_TimeOnly_AMPM
,...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 3:33 am
I used to display long strings in a similar matter and even wrote a similar article (didn't know Timothy had already written one back then). A fellow by the name...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 14, 2019 at 2:56 am
Viewing 15 posts - 9,151 through 9,165 (of 59,091 total)