Forum Replies Created

Viewing 15 posts - 271 through 285 (of 1,109 total)

  • RE: turning off transaction logging

    Bill Riggio (4/8/2008)


    thanks - i've already broken up the deletes. will simple mode speed up the deletes?

    they are being done using the primary clustered index.

    Switching to simple will avoid...

  • RE: turning off transaction logging

    Bill Riggio (4/8/2008)


    approx. 15% is to be deleted from a VLDB. unfortunately it would be way too much data

    to copy into a temp table.

    What you can do is to...

  • RE: Splitting

    karthikeyan (4/8/2008)


    yes you are correct,we can seperate it in the DTS itself.

    But i want to do this with sql query.

    Well, in this case you will need to parse the...

  • RE: Splitting

    karthikeyan (4/8/2008)


    Andras,

    I already did what you have mentioned.

    TableName: Imp_Text

    Remarks

    50,Karthik,1982,+91-044-994012345,5000.00

    60,Vijay,1974,+91-044-998012345,8000.00

    70,Arun,1992,+91-044-992012345,6500.00

    Now i want to split it in the below format.

    50 Karthik 1982 +91-044-994012345 5000.00

    60 Vijay 1974...

  • RE: Splitting

    You can create a table in which you want to load the data into, e.g.:

    CREATE TABLE mytable

    (

    id INT,

    ...

  • RE: Changing tables names to lowercase

    Imke Cronje (4/7/2008)


    Hi Guys,

    Is there any way in SQL to change all the user table names to lowercase.

    Regards

    Imke

    Is your database case sensitive? If so, then you will need to update...

  • RE: Log Files

    Phil Auer (4/7/2008)


    ...

    (2). I read that when index optimization is selected in a Maintenance Plan that the DBCC REINDEX statement is run and that it creates many more entries in...

  • RE: Log Files

    1: without the size parameter the DBCC SHRINKFILE will use the size specified when the file was created, or the last size set by using ALTER DATABASE (copy from...

  • RE: Differential backup in 2005

    Ambuj Mathur (4/7/2008)


    Thanks Andras! Just wanted to be doubley sure before going-ahead on a critical DB.

    So, this means that trans log is only affected when there is any trans backup...

  • RE: Differential backup in 2005

    The transaction log backup is not affected by a full or a differential backup. It will still contain the log entries from the last log backup.

    Regards,

    Andras

  • RE: Updating only changed columns

    The cost of updating a column to the same value is not as bad as it sounds. You could check the old and new value yourself, but so does SQL...

  • RE: transpose

    nithyapoy (4/7/2008)


    Hi,

    i have Table Name Country with field Country_id and Country_Name.

    Country_IDCountry_Name

    4 US

    2 ...

  • RE: CURSOR IN UDF

    Ratheesh.K.Nair (4/7/2008)


    Hi all,

    Is it possible to create a cursor inside a UDF..If possible can anyone...

  • RE: What kind of DBA are you?

    When it comes to SQL Server I use sequel (just to join the herd). When it comes either to the standard or another database management system, then S-Q-L. I think...

  • RE: Identify SQL Server backup files

    Ravi Kumar (4/4/2008)


    How to identify the backup files, whether the backup files were taken using SQL 2000 or SQL 2005 without restoring it on the database?

    Advance thanks,

    Ravi

    Use "restore headeronly". This...

Viewing 15 posts - 271 through 285 (of 1,109 total)