Forum Replies Created

Viewing 15 posts - 44,971 through 44,985 (of 49,571 total)

  • RE: DBCC SHRINKDATABASE/SHRINKFILE

    Shrink won't damage the database.

  • RE: Urgent

    insert into Table1 (ConcatenatedColumn)

    Select Col1 + ' ' + col2 + ' ' + col3 From SomeOtherTable

  • RE: Auditing SQL Server 2005

    Are you looking for a report of how it looks now, or are you looking to capture changes?

  • RE: DBCC SHRINKDATABASE/SHRINKFILE

    But I need know how its work..Is it reducing the Log File Size

    It reduces the size of the log file by releasing unused space within the file back to the...

  • RE: Error

    A single IO (64kb) taking longer than 15 seconds is never acceptable, no matter what may be running. What that warning means if that in the course of 2 minutes...

  • RE: Error Ambiguous column name

    No, 2000 didn't complain about that. It was laxer on what it considered valid SQL syntaax, leading to the occasional oddity

    What it's complaining about is that there are two columns...

  • RE: table/column change dates

    SQL 2000 only keeps track of the create date.

    select crdate from sysobjects where xtype='U'

  • RE: Oxymorons!Fun on a Friday

    "The network has issues"

    Networks don't have issues, they have problems. Magazines have issues (weekly or monthly).

    Though, given the state of the network, hinting that in only worked properly once a...

  • RE: "Defragging" an index that wont defrag

    KTG (8/18/2008)


    Can't the data on a single page be fragmented?

    Defragging an index means to put the pages of that index back into logical order. If there's only one page then...

  • RE: DBCC SHRINKDATABASE/SHRINKFILE

    Sandy (8/18/2008)


    Gail,

    Can you please make it little more clear..

    Can I make what more clear?

    Gail, I have checked, the log file is there..

    Can you tell me why again this error?

    100% sure?...

  • RE: Interesting but Stupid Question

    bhuvnesh.dogra (8/18/2008)


    hey ...how did it happen ? my question became QUESTION OF THE DAY..but without my name

    ? :unsure::unsure:

    Actually, it didn't. You posted this on the 14th Aug. It...

  • RE: Migrating to 2005

    Schadenfreude-Mei (8/18/2008)


    Just creating new SQL logins may be an issue if SQL logins (from 2000) own schemas or are dbo's etc (this is because their SID's will be different).

    The...

  • RE: DBCC SHRINKDATABASE/SHRINKFILE

    The shrink can only reduce the file space if there is free space within the file. If there's no free space, the file can't be shrink. It's not compression or...

  • RE: While Loop 100% CPU

    Sounds about right for a while loop.

    Could you post the code here and we'll help you do whatever it is without a while loop. It's usually possible and almost always...

  • RE: How to make a password for my SQL Server Database?

    Query analyser's asking for the login's password. All that's happening with enterprise manager is that it remembers the passwords when you add the servers to the tree. A person needs...

Viewing 15 posts - 44,971 through 44,985 (of 49,571 total)