Viewing 15 posts - 20,926 through 20,940 (of 22,184 total)
Oh come on, it'll have an effect. You're inserts will be faster because you're not maintaining a useless index.
😀
March 4, 2008 at 5:57 am
As everyone else has already pointed out, if you pass in brackets, you can make a table named almost anything, including [].
But, if we assume you either strip the brackets...
March 4, 2008 at 5:49 am
I definately recommend you NOT use a function for this type of query. It's a straight select statement. It should be done within a stored procedure or a parameterized query....
March 4, 2008 at 5:33 am
The function is probably presenting itself as (doing this from memory, so forgive me if I'm slightly off) a table scan or an external operation, but I think if you...
March 4, 2008 at 5:30 am
What does the execution plan look like?
I suspect, but this is a guess, you're getting an index scan and then a bookmark lookup to get to the data and then...
March 3, 2008 at 1:06 pm
Me too. I haven't a clue where to begin with SSAS. I have done some SSIS, but I'm just barely functional, not competent. SSRS is probably going to become a...
March 3, 2008 at 12:45 pm
A covering index is one in which all the columns needed by the query are contained within the index.
When you listed the row count and distinct value count, was that...
March 3, 2008 at 12:27 pm
create (3/3/2008)
I didn't mention that I was working in vbscript so that was my mistake.
I must be missing something though because I am still not sure how we...
March 3, 2008 at 10:37 am
Sorry, I wasn't clear. I showed how to build the SQL string in TSQL. You're correct. To build an execution string in VB, you'd use the &.
However, as Roy mentioned...
March 3, 2008 at 9:09 am
You're preaching to the choir now. I have a name plate (made by my boss as a joke/award) that says "The Scary DBA" because I've lifted scalps in the past....
March 3, 2008 at 8:22 am
Oh, I just thought of another one you can do. When you suggest some change to schema or process that will improve up time or performanc and the developers baulk,...
March 3, 2008 at 7:54 am
My developers don't listen to me either.
From the sounds of things, I'd do three things. First, when they have an issue with something that you propose, gather all the statistics...
March 3, 2008 at 7:39 am
You are very likely not going to solve the problem. If the two processes are fighting for resources you have to put severe limits on one or both which is...
March 3, 2008 at 7:30 am
vishnu.swamynathan (3/3/2008)
Dear friends,Anybody can tell me deeply, about normalization (All types) with simple examples?
Vishnu S
Since this is a completely different topic from the one under discussion, you should...
March 3, 2008 at 7:12 am
Viewing 15 posts - 20,926 through 20,940 (of 22,184 total)