Viewing 15 posts - 11,071 through 11,085 (of 14,953 total)
You might see a slight improvement running directly on the server. Won't be much, but it might be a little.
Would it be worthwhile to post the proc and table...
February 9, 2009 at 7:14 am
You can use a recursive CTE to generate the data for your trigger. Would look something like this:
;with
Parents (ID, PID) as
(select ID, Parent_ID
from inserted
where Parent_ID is not null
union...
February 9, 2009 at 7:10 am
And yet there are those who still say SQL Server doesn't "scale out"....
February 9, 2009 at 7:03 am
Simple calculated fields perform pretty well and scale just as well as querying the column. And they're often more reliable than update jobs.
February 9, 2009 at 7:02 am
Excellent list. Go for it.
February 6, 2009 at 3:11 pm
Beyond even that, just trying to find a decent definition for the words "relational database" was a major hassle when I was first starting out as a DBA (9 years...
February 6, 2009 at 2:45 pm
I just tried it on my dev box, and it worked. If you can't, then I guess it's impossible to accidentally rename a database for you, and someone must...
February 6, 2009 at 2:40 pm
From what I can determine, Basic Edition of Management Studio was a pre-release version for use with SQL 2008 Express Edition.
I seriously doubt you can make that do what you...
February 6, 2009 at 2:38 pm
I have to agree with Gail and Lynn. Your network people/person should have a serious fire lit under them till then find out what that's about.
February 6, 2009 at 2:30 pm
When you say "buy the books online", are you refering to a specific book, that you plan to buy from Amazon.com or something like that, or do you mean "Books...
February 6, 2009 at 2:28 pm
I'm not clear on what you mean by "change logs". Do you have some files that you are using to track changes to the database?
If so, that's going to...
February 6, 2009 at 1:19 pm
Are you building the query in the New View GUI, or typing it into a connection window and running it? Typing it in and running won't add commas to...
February 6, 2009 at 1:17 pm
I think that is caused by one or both of the servers not having remote transactions handling enabled correctly. You might try checking into that. Of course, I'm...
February 6, 2009 at 1:13 pm
When you say it added the comma back in, what added the comma back in? Are you building these queries in Management Studio, or something else?
February 6, 2009 at 11:41 am
Viewing 15 posts - 11,071 through 11,085 (of 14,953 total)