Forum Replies Created

Viewing 15 posts - 136 through 150 (of 208 total)

  • RE: Database Optimization

    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...

  • RE: Sizing a sql 2005 with 2 instances

    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...

  • RE: Query

    People, give it a rest. Why do 20 or so people repeat what's been said in first few posts?

    What if site owners decide not to post qod at all? Heck,...

  • RE: CURSOR IN UDF

    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...

  • RE: Query

    Points don't matter. QoD is supposed to fun way of learning something new (you're wrong) or prove your knowledge (you're right and awarded with points).

    Questions like this spoil the fun....

  • RE: Database Optimization

    JessJenn (4/4/2008)


    Hey guys,

    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...

  • RE: Query

    The question asks for join_date, not dob, so first answer is incorrect.

    datename(m,) returns full name of month, which gives correct result for few languages, but not all, so it's also...

  • RE: SQL Server Table Types

    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...

  • RE: How to rebuild entire instance?

    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...

  • RE: Very large facttable

    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...

  • RE: Transfer data from sql server to DBISAM database

    You should rephrase your question.

    I really don't know nor are willing to guess what are you asking for.

  • RE: cursor to identify changed,deleted and added records

    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...

  • RE: Primary key violation

    ramadesai108 (3/29/2008)


    All,

    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...

  • RE: Implementing FULL-TEXT Search in a Google fashion!

    Depends. Google does a lot more than phrase matching and ranking.

    See also CONTAINS predicate and ISABOUT term.

  • RE: Transfer data from SQL server database to DBISAM

    Do not scrosspost. Answered elsewhere.

Viewing 15 posts - 136 through 150 (of 208 total)