Viewing 15 posts - 31 through 45 (of 65 total)
I would do it like how Remi suggested. Just use the collate function and have the right capitalization in the Where clause:
To find lower case f:
select titledesc from tblproducts...
June 2, 2005 at 9:40 am
Yeah, that is pretty useful. I've been wanting the headers too. Thanks, chewrock!
May 6, 2005 at 10:31 am
You actually don't need to change to tab delimited to paste into Excel. You can do it from the standard Grid. Just click on the column name to select it....
May 6, 2005 at 10:21 am
You all probably already know this, but if you right-click an object in the browser and select Scripting Options, you can set some useful features. I like including extended properties,...
May 6, 2005 at 10:12 am
I love this type of article/discussion. I find tips from seasoned professionals very interesting and helpful.
I only have one qualm about using the templates and the auto scripting features:...
May 6, 2005 at 9:24 am
Regarding the dropping the table task: Make sure that you use the slanted quotes around the table name, not just the regular single quotes. They seem to be necessary. You...
May 3, 2005 at 8:05 am
Yeah, I've also setup a filter. However, it's very concerning for those of us whose companies send out legitimate emails actually requested by the customer. I hope their spam review...
April 26, 2005 at 2:16 pm
Thanks for the clarification. However, that then means I do, in fact, need to worry about the temp table being dropped.
Let me clarify a little more about my concern. I'm...
April 5, 2005 at 9:56 am
I was checking for existence as a failsafe. When you run the code multiple times in the same session, it would error out if the temp table was not dropped....
April 5, 2005 at 9:33 am
What counter logs do you regularly keep track of? And what are you looking for in the trc file/report? I'm pretty new to performance tracking (as opposed to optimization) and...
April 4, 2005 at 8:28 am
BTW, am I correct in my thinking that the triggers will be dropped?
March 22, 2005 at 2:52 pm
At my company, it is critical that we accurately maintain item status. Whether or not an item is active on the website is a complicated set of conditions (there's a...
March 21, 2005 at 7:37 am
I think that is the only way. Besides, it really is the correct way to do it and is a good habit to have. Since you're inserting back into itself,...
March 17, 2005 at 11:42 am
The "i" reference is a table alias. It's a usefull shorthand, particularly when dealing with long table names.
For example, the following query:
SELECT tblProductsWebSetting.SKU, tblProductsWebSetting.Title, tblProductsBibliographicInfo.Author FROM tblProductsWebSetting LEFT JOIN...
March 17, 2005 at 11:11 am
There is currently a thread going that may answer your question. Take a look at http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=168132
Let us know if your situation is different and we can help you...
March 17, 2005 at 9:03 am
Viewing 15 posts - 31 through 45 (of 65 total)