Viewing 15 posts - 58,096 through 58,110 (of 59,048 total)
I'd recommend that, whatever you do, you do NOT use "Set Transaction Isolation Level" in updatable views... don't know when it will happen but you will eventually run across an...
June 17, 2006 at 7:09 am
I'm pretty sure that you cannot pass an array... guess that leaves a CSV parameter...
If you don't have very many parameters in the "list", why not pass them as individual...
June 16, 2006 at 6:00 pm
Unless it is a homework problem, I see no practical reason to index the view... the underlying indexes of the tables will inherently be used during normal view resolution.
June 15, 2006 at 11:31 pm
Strangely enough, you'll usually find a direct correlation between poor performance code and deadlocks and, with the exception of not allocating enough memory, hardware is not usually the problem nor...
June 15, 2006 at 11:20 pm
It's apparent, now, the interviewer was asking the interviewee to think outside the box. The original poster didn't explain it was an interview question until after I asked "why". For...
June 15, 2006 at 11:11 pm
I have an SQL Server based IVR at work (actually, 400 miles away from the main DB)... it uses a linked server connection with multiple pass through views as you...
June 14, 2006 at 5:09 pm
You bet, Kevin. Thank you and Niles for the feedback...
Kevin, could you tell us the actions you took? Bet, lot's of folks would like to hear what the lickiest guy...
June 14, 2006 at 4:48 pm
Thanks for looking, John. If I find anything from Microsoft, I'll be sure to post it.
June 14, 2006 at 7:51 am
One other BIG thing to consider before you delete anything... do you have a permanent backup of the data you are about to delete? One of the 10 commandments for...
June 14, 2006 at 7:45 am
Sorry about the confusion on the owners... I'm used to folks putting everything into production as "dbo". Yes, the views you speak of would certainly and easily solve that problem...
June 14, 2006 at 7:36 am
Yep... I concur with PW... "Create or Replace" is definitely Oracle code and the string functions available are quite different in SQL Server.
So, which do you need, Oracle Code or...
June 13, 2006 at 11:22 pm
Oh, yeah... almost forgot... you can get a list of available collations using the following code...
SELECT *
FROM ::fn_helpcollations()
June 13, 2006 at 11:19 pm
Yes...
My recommendation (for U.S. installations) is to select a collation that is Dictionary Order, Case Insensitive (CI) and Accent Sensitive (AS). This will normally be done during installtion of the server...
June 13, 2006 at 11:18 pm
It's in Books Online under [Create Index] but here's a quick example for what you want to do...
CREATE UNIQUE NONCLUSTERED INDEX index_name
ON tablename (columnlist)
June 13, 2006 at 11:03 pm
Viewing 15 posts - 58,096 through 58,110 (of 59,048 total)