Viewing 15 posts - 271 through 285 (of 1,957 total)
Excellent article. Well written, with good examples. Thanks.
April 9, 2015 at 8:25 am
I chose option 2 because not having an alias on that column is bad to me, however I agree that option 4 also "fixes" it, just not in an...
April 9, 2015 at 8:02 am
I once had a similar experience with Sharepoint, which was solved with this:
Make sure “automatically detect settings” is turned off in IE.
I don't know if it is the same problem...
April 8, 2015 at 6:52 pm
A warning:
if you have a column set defined on the table, and the column you are checking is part of that column set, then it will never be the only...
April 6, 2015 at 5:47 pm
Let's just confirm this is a local temporary table, with one #, not a global with two ## ?
April 1, 2015 at 4:25 pm
I see two choices.
1. It is April 1st.
2. You win the prize for worst query ever.
April 1, 2015 at 1:09 pm
AdrSHL (3/31/2015)
mister.magoo (3/31/2015)
March 31, 2015 at 5:41 pm
If this is copying and pasting one cell from SSMS to one cell in Excel, then make sure you are in edit mode in Excel before pasting, either by pressing...
March 31, 2015 at 4:58 pm
Thanks for an interesting read, sometimes it's worth revisiting those ideas that you have put aside just in case you see a new angle on them.
I just wish you hadn't...
March 31, 2015 at 4:50 pm
Ed Wagner (3/30/2015)
Jeff Moden (3/29/2015)
mark hutchinson (3/29/2015)
Null is a something that means nothing
I'll have to disagree with that. To me, an empty string or the number 0 is nothing....
March 30, 2015 at 6:39 am
Glad you got it working - it takes some people quite a while to get to grips with it, especially figuring out the required naming in WCM.
The next pain you...
March 27, 2015 at 7:28 am
I don't use runas /netonly any more for that reason (and I hate typing passwords), so now I store the credentials in the Windows Credential Manager and just run SSMS...
March 26, 2015 at 5:07 pm
use a query to provide available values.
Something like
select thedate from dates where thedate>=dateadd(day,-60,getdate())
March 26, 2015 at 1:59 pm
ChrisM@Work (3/26/2015)
Phil Parkin (3/26/2015)
dwain.c (3/26/2015)
Gary Varga (3/26/2015)
dwain.c (3/25/2015)
March 26, 2015 at 4:48 am
Try these if you like...
First Monday of previous month:
= DateAdd(DateInterval.Day, (8 - DatePart(Dateinterval.Weekday,DateAdd(DateInterval.Month, - 1, DateValue(Format(today, "MMM yyyy"))),firstdayofweek.Monday)) Mod 7, DateAdd(DateInterval.Month, - 1, DateValue(Format(today, "MMM yyyy"))))
And Sunday before first Monday...
March 25, 2015 at 5:48 pm
Viewing 15 posts - 271 through 285 (of 1,957 total)