Forum Replies Created

Viewing 15 posts - 1,681 through 1,695 (of 7,429 total)

  • RE: Understanding System Requirement

    It all depends on the load the application will create. If not very much then even the desktop could technically be overkill. But for the basics of what you say...

  • RE: Conditional Constraints Doubt

    Create a composite unique constraint or composite primary key (same basic thing in this case) on both columns. Using EM table design is easiest to use after the fact.

  • RE: Network and Database libraries?

    Network libraries depend on the types of network protocols you allow to conect to your SQL Server and are generally available in the Network setup. DB libraries are the client...

  • RE: Is a "delete" really 100% gone?

    Depends on how it is removed. If done with a truncate the answer is no, only the poitner in sysindexes to the first page is set to 0 (invalid). If...

  • RE: Quick Ques about variables & speed...

    The reason is due to the storing of the execution plan. If you have both in the same SP like that then you will only save the first execution plan...

  • RE: SQLDMO

    I have seen this before but forget the exact details on other areas. However if someone builds and application using DMO to connect to the server and does set the...

  • RE: Web Timeout Running Stored Procedures

    You didn't happen to name the SP 'sp_' as the prefix did you? If so it will always try to find in master before local and the cachemiss will occurr.

  • RE: Index creation Guidlines

    Actually SSN will be fine but should be CHAR not VARCHAR as it is fixed in length and format.

    It will in many cases be but will be an index scan...

  • RE: Estimated cost of SQL Server 2005

    Finnal numbers are not yet available. I assume thou will be close on both counts to what 2000 has been thou.

  • RE: Quick Ques about variables & speed...

    If you are going to use this in an SP and these are the only options the this will give best bang.

    CREATE PROC ip_OptRun;1

     @a_or_b AS char(1)

     @row_id AS int

    AS

    SET NOCOUNT ON

    If ...

  • RE: UDF Problem

    For the given scenario the answer is no.

  • RE: Concat separate name fields into one

    Look at the IsNull function.

  • RE: sbs2003 invalid user problem

    Using Profiler wathc what is happening on those machines and compare with the same activity on one that is working. Might give some insight. Right off I haven't seen this...

  • RE: sbs2003 invalid user problem

    Verify that the user has the same object and db permission on that server as the rest. Espeically make sure it hasn't been given dbo status somehow.

  • RE: write cursor output to a file

    You will have to use sp_OQCreate to open a file system object and write in the data unless you are using DTS.

Viewing 15 posts - 1,681 through 1,695 (of 7,429 total)