Forum Replies Created

Viewing 15 posts - 1,516 through 1,530 (of 2,268 total)

  • RE: Search by Number of Characters

    Select * from YourTable

    Where len(Description) > 35

  • RE: SQL Tools

    You won't have to install VS2005.

    As far as licensing goes, i think that if you have the correct CAL/process license for your server then you can install Client tools...

  • RE: Regarding LDF file.

    You should schedule transaction log back-ups this will truncate the log and mark the space for re-use.

    Your database needs to be on full-reovery mode to allow this.

  • RE: SQL Tools

    Vnc'ing into the server is not ideal, the client tools are on the same disk that has SQL server just go through the install process on...

  • RE: count rows with same id

    try

    select id, count(*) as RowAmount, color

    from tableX

    Group By id, color

  • RE: Unable to script a view

    No worries, thanks for the feedback..

  • RE: Unable to script a view

    The DBA should be able to give you specific permisson to view the definition of the View, and then Deny modify/alter permissons.

  • RE: Permissions Issue

    As far as i am aware sp_droptype is to drop alias data types, ones that have been user created, as Date is a system datatype in 2008.,...

  • RE: Permissions Issue

    I dont think it is a permission error, as you have said you checked, it looks like you are passing in the string 'Date' and using this as...

  • RE: .Net application development with SQL Server 2005

    Have you installed SQL server on a server or on your local machine?

    If this is a application running on a server or a local machine then you may consider downloading...

  • RE: Which Column Collation Do I Need To Use????

    Scout7 (3/11/2009)


    I still current have everything set to the database default, which is as follows;

    Windows Collation - Latin1_General

    Dictionary Sort - Accent Sensitive.

    This is working fine for most of main languages...

  • RE: How to deploy database in production server

    Krishna (3/11/2009)


    karan457 (3/11/2009)


    Hi i need to deploy my final database from staging server to production

    How to deploy database in production server

    The fastest operation is to detach it and...

  • RE: Inner Like Join?

    I have to agree with the comment above about normalistation, you will be in for a lot of issues down the track with this sort of design

  • RE: sp_who2 - - CPUTime

    The CPU time is cummulative so it is normal for it to keep increasing

  • RE: I need a text reader where I can set it to return top 1000 records

    for opening large text files i use textpad

    http://www.textpad.com

    I am not sure if it has a rowcount option, but i have opened large 500mb+ text files without any problems

Viewing 15 posts - 1,516 through 1,530 (of 2,268 total)