Viewing 15 posts - 136 through 150 (of 208 total)
Actually, the solution is not so ugly.
Simply log all your development changes into a script and when you get a new version from vendor, simply reapply the script, fixing eventual...
April 10, 2008 at 12:58 am
I'm not sure about what your question is. 7gb database is relatively small, so you can set it to autogrow 10-20%:
ALTER DATABASE [mydb] MODIFY FILE ( NAME = N'Mydb', FILEGROWTH...
April 8, 2008 at 5:41 am
In UDF you have even less reasons to use cursor as you can't call store procedure. Most of times it can be rewritten to use custom aggregate:
DECLARE @StaffList varchar(1024)
SELECT @StaffList...
April 7, 2008 at 4:17 am
JessJenn (4/4/2008)
My company is undertaking a database optimization project. Optimization the schema, the code, etc. I would like to ask, if you guys could help out, the following:
1. What...
April 7, 2008 at 1:19 am
Since you mention temp tables #temp (local to connection), you should also mention global temp tables ##temp (accessible by all connections).
Also, how to check it the temp table exists.
Best practice...
April 4, 2008 at 11:10 am
I never had a crash. Might be that a backup file is bad or some event handlers (autostart jobs) that reference the other instance, so if other instance is not...
April 4, 2008 at 10:12 am
I'd use partitioning on a huge table, where there is a time or other criteria on which a big part of data is rarely used/modified as it speeds up a...
April 3, 2008 at 4:06 am
You should rephrase your question.
I really don't know nor are willing to guess what are you asking for.
March 31, 2008 at 6:20 am
What does "OP" stand for? Ops, original poster :blush:
Considering the level of the question, I wouldn't think so either. However, when dealing with customers or assisting fellows developers on their...
March 31, 2008 at 6:10 am
ramadesai108 (3/29/2008)
I don't think you understand how bound true db grid works. It displays data from the select query and tries to update the database using...
March 31, 2008 at 5:54 am
Depends. Google does a lot more than phrase matching and ranking.
See also CONTAINS predicate and ISABOUT term.
March 31, 2008 at 5:20 am
Do not scrosspost. Answered elsewhere.
March 31, 2008 at 4:20 am
Viewing 15 posts - 136 through 150 (of 208 total)