Forum Replies Created

Viewing 15 posts - 301 through 315 (of 447 total)

  • RE: SQL Server 2008 on Windows 2008 Vs. Windows 2003

    ramadesai108 (9/23/2008)


    Hello All,

    Desperately need your help in deciding whether to install SQL Server 2008 on Windows 2008 or Windows 2003. Does any one know if there...

    SQL DBA.

  • RE: Restore fails error 3633 severity 16 state 1

    If restoring on an existing database use REPLACE and RESTRICTED_USER in restore command.

    or kill all processes using this database at the time of restore.

    SQL DBA.

  • RE: Small table and rows

    HKwai (9/16/2008)


    There are many articles says that small table you probably don't need any indexes because the exeuction plan will do better doing a full table scan than doing the...

    SQL DBA.

  • RE: How To Check SQL SERVER Uptime Through T-SQL

    i didn't get any error.

    SET NOCOUNT ON

    DECLARE @crdate DATETIME,

    @days varchar(3),

    @hr VARCHAR(50),

    ...

    SQL DBA.

  • RE: Moving Indexes

    Great article. I had an index move task in last week of this month and definitely try your scripts on testing env. and let you know results, how it...

    SQL DBA.

  • RE: odd sorting behaviour

    Change in collation level even at operating system can change the sort order. I had been through this when I moved 2000 database (Latin1_general_AS_CI) to 2005 server (Latin1_General_BIN).

    SQL DBA.

  • RE: TSQL Calculation

    Try

    ((lease_new_amount - lease_original_amount ) / 30.5)

    you have 7 opening and 6 closings in it.

    SQL DBA.

  • RE: tempdb reporting Error: 9002 log full

    first of all, don't shrink it unless you have to because space needed on the drive by something else. Tempdb has grown to this size because it needed to at...

    SQL DBA.

  • RE: tempdb reporting Error: 9002 log full

    My tempdb database property shows size as 16.6 GB and space available 99%. when I look at shrinkfile window datafile show 16.6 Gb size but in shrinkfile size to...

    SQL DBA.

  • RE: Kimball ETL Part 1 – Data Profiling via SSIS Data Flow

    Uuhhh.......Good read but I admit I am bad at understanding complicated SSIS packages.

    SQL DBA.

  • RE: Operations Manager and SQL Server

    Good article. But, OpsMgr is not as accurate and trust worthy as it has to be. I implemented it couple of weeks back and even though my dev...

    SQL DBA.

  • RE: retrieve / recover sa password

    tosscrosby (7/17/2008)


    amjadpathan, while I'm sure your intentions are good, you do know you've responded to a thread that's been dormant for 30 months, don't you?

    Good reply.

    SQL DBA.

  • RE: Find DTS package name?

    Googled it and found this. Though not a good way to do. As I have more than 270 package and I can't sit opening all packages. Is there...

    SQL DBA.

  • RE: Changing Rogue Database Collations

    Anyone here?

    Just to add. Error is in this line.

    SET @strColumnList = left(@strColumnList,len(@strColumnList)-1).

    I tried differently but could not get the result I wanted. like.

    SET @strColumnList = LEFT(@strColumnList, CHARINDEX(' ', @strColumnList) -...

    SQL DBA.

  • RE: Changing Rogue Database Collations

    HI,

    When I execute script1 from the article I get this error:

    Server: Msg 536, Level 16, State 3, Line 210

    Invalid length parameter passed to the substring function.

    My database default collation is...

    SQL DBA.

Viewing 15 posts - 301 through 315 (of 447 total)