Viewing 10 posts - 1 through 10 (of 10 total)
I have several pet peeves about the Filter Settings dialog in SSMS.
Adding Filter Operators such as Starts With or ends with to the dropdown
In more detail, the navigation on...
June 4, 2021 at 4:29 pm
Thank you for the update. My preliminary tests look good. The actual table change: ALTER TABLE myTable ALTER COLUMN theCol varchar(max)
seems to affect metadata only and was...
May 9, 2012 at 4:59 am
Hi Hank, for the benefit of others facing the same challenge, did you end up with any "gotchas" with the conversion of your app?
May 8, 2012 at 3:02 pm
Unfortunately, no. It's financial transactions that are basically a race to the database. They have timestamps, but really just the Identity field is the only way to uniquely...
September 12, 2010 at 3:15 pm
Hi Wayne, I created found a good article on this and made a proof of concept that works well with simple data sets. However, one underlying assumption of the...
September 11, 2010 at 5:35 am
I wasn't seeing any tables in my results. I think you need a left outer join to sys_columns because Object_Definition on Table
returns NULL
June 21, 2010 at 5:17 am
I just noticed something else with my "In" syntax. If you put the IN clause into a JOIN, you can use the LIKE against the original source table for...
December 4, 2008 at 12:11 pm
This doesn't work for a LIKE condition, but for equalities in a small number of fields, you can use
WHERE '411-555-1212' IN (HomePhone, WorkPhone, CellPhone, AltPhone)
I've found it useful when...
December 2, 2008 at 7:55 am
Thanks for replying. I just finished an inelegant but workable solution. The problem was that I needed some blank placeholders added to my temp table. I added...
August 22, 2007 at 9:16 am
Viewing 10 posts - 1 through 10 (of 10 total)