Forum Replies Created

Viewing 15 posts - 2,371 through 2,385 (of 6,397 total)

  • RE: Backup compression

    Arindam Ganguly (2/19/2013)


    Hi,

    I have one point to ask. I have Backup compression enabled in my SQL Server. Can I restore any uncompressed Normal Backup. For the shake of information the...

  • RE: While installing 2005 server am getting below error?Please let me know any one solutionHow to solve?

    Looks like you already have the product installed and you can only manage it via the control panel.

    If you want to install it again you need to give it a...

  • RE: Shrink Data file with truncateonly

    SQLCrazyCertified (2/19/2013)


    mwagh (2/19/2013)


    Thanks!! works in my case as i have a lot initially allocated space which was never touched.

    Hi, sorry, I was not aware of this, anyway, with...

  • RE: Regarding data transfer ?

    Depends on your server hardware, load, network etc.

    Could be 1 at a time could be 100000000.

  • RE: Row Versioning

    You decide if you need row versioning on a table or not, its there to tell you when a row has changed, hence the timestamp hash changes. Its not...

  • RE: Row Versioning

    Row Versioning? You mean adding a timestamp column to the table which changes when rows are updated etc? - No there is no way to know the old...

  • RE: Regarding data transfer ?

    connection string yes, table name no

    you can have as many source and destinations in 1 DFT as you wish

  • RE: Regarding data transfer ?

    then look at replication, logshipping, creating your own ssis packages, merge commands etc etc etc

  • RE: While installing 2005 server am getting this? how to solve plz?

    get hardware which meets the minimum required to run SQL 2005.

  • RE: Fragmention even after rebuilding the indexes

    A index with a page count < 1000 you can usually ignore as fragmentation wont cause you to much of a headache with small tables.

    Heaps require a different command to...

  • RE: Date comparision logic....?

    Abu Dina (2/19/2013)


    The problem is with this:

    (modify_date >='2012-01-28 15:43:46.077' or modify_date <='2012-12-28 15:43:46.077')

    Your query is looking for record where the modified date = '2012-01-28 15:43:46.077'

    Slight change to Tony's version:

    select create_date,...

  • RE: Date comparision logic....?

    Abu Dina (2/19/2013)


    The problem is with this:

    (modify_date >='2012-01-28 15:43:46.077' or modify_date <='2012-12-28 15:43:46.077')

    Your query is looking for record where the modified date = '2012-01-28 15:43:46.077'

    Nope, its an 11 month...

  • RE: Date comparision logic....?

    like this?

    select create_date, modify_date from sys.objects

    where

    create_date >='2010-01-01' and

    (modify_date >='2012-01-01' or modify_date <'2013-01-01')

  • RE: Select in scalar function - what am I doing wrong?

    select @van_id + replace(convert(varchar(11), @nextdel, 113), ' ' ,'') datekey from replicationLock

    The above line is returning data to the client, which is causing the error

    Do

    SELECT @count = COUNT(@van_id + replace(convert(varchar(11),...

  • RE: Regarding data transfer ?

    1 time transfer or continuous transfer?

    1 time, use import export data wizard, SSIS, BCP etc

    continuous I would look at replication

Viewing 15 posts - 2,371 through 2,385 (of 6,397 total)