Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 2,268 total)

  • RE: Versioning the stored procedure

    You can use source control such as Subversion to store all your SP code and use this to keep track of changes

  • RE: SSIS Data Type

    what i would do is;

    Import the csv file as set all the fields to import a string,

    do some transformation on the suspect dates to set them to a similar format

    Convert...

  • RE: Text file not fully loaded

    It is really hard to say without more information.

    Is there anything unsual about the 28 rows that were left out?

    Do you have a lot of transformations that could be dropping...

  • RE: Shrink database

    yulichka (11/19/2008)


    My data file is 184 KB and I wanted to shrink. What is the best way to do it?

    why would you want to shrink a 184kb datafile? that...

  • RE: Shrink database

    yes this is something that you will have to do manualy, it is different from the AUTO-SHRINK option.

    But be aware that unless you have had a lot of ...

  • RE: Shrink database

    straight from BOL

    DBCC SHRINKDATABASE

    ( 'database_name' | database_id | 0

    [ ,target_percent ]

    [ , { NOTRUNCATE | TRUNCATEONLY }...

  • RE: Create database using Backup file

    venki (11/19/2008)


    Perry Whittle (11/18/2008)


    venki

    you can of course also use the management studio if you prefer GUI interraction

    How can we do with SQL Server Management Studio?

    Right Click on databases node on...

  • RE: Duplicating or Replicating the database structure

    To generate your scripts right click on the db in SSMS (2005) and click Tasks --> Generate Scripts..

    This will give you the scripts that are required to...

  • RE: "Now" is not working with Full text search

    You may want to have a look at your noise word list, Now is a common word and may be in the noise word list so it is...

  • RE: What is the best way to import a image to sql server

    How many images are there?

    Are these images stored on a drive anywhere?

  • RE: SQL 2005 Query Error

    This isn't really a 'bug' with SQL.

    The problem is SQL server getting the blame for bad application design and coding.

    What situation do they need 33millions rows, must be a...

  • RE: SQL 2005 Query Error

    Do they need to select ALL rows?

    Are they also selecting all columns? (select *)

  • RE: Query to Select Login & User ID

    SELECT * FROM sys.database_principals

    WHERE TYPE = 's'

  • RE: general question about DB space

    You can turn on simple recovery and shrink the transacation log, or you can shrink the database file.

    Though neither of these are really recomended as SQL server uses as...

  • RE: SP for row count of tables

    to do a count(*) for each table you can use;

    sp_MSforeach table

    create table #rowcount (tablename varchar(128), rowcnt int)

    exec sp_MSforeachtable

    'insert into #rowcount select ''?'', count(*) from ?'

    select *...

Viewing 15 posts - 1,801 through 1,815 (of 2,268 total)