Forum Replies Created

Viewing 15 posts - 2,701 through 2,715 (of 3,011 total)

  • RE: ooak keys

    What's an "ooak"?

     

  • RE: Help getting rid of sql default tables

    The thing I find amazing is that someone who claims to be a “senior DBA” would just jump in and do something without having a clue about what they...

  • RE: @@Rowcount in view???

    It is very easy to make broken glass from bottles, though, and a lot more fun.

     

  • RE: why major players work on Sybase ??

    If SYBASE is doing the job, there would be little reason to change.

    The cost of re-factoring the application is likely to be very high, so unless there is a really...

  • RE: Calculating Work Days

    A small problem with the function is that it depends on the language setting of the users session.  The change below will allow it to check if StartDate is Sunday and EndDate is...

  • RE: Help getting rid of sql default tables

    My point being that if the situation is as he described, he shouldn't be doing anything more, and certainly not trying to apply any advice from posts on this forum, because...

  • RE: Help getting rid of sql default tables

    If this wasn’t a troll, I can't see a possible constructive response, other than to say, “Stop, don’t do anything else!  Find someone who knows what they are doing to help...

  • RE: Help getting rid of sql default tables

    I really can’t believe that the original post is anything but a troll, and not a very good one.

    I doubt that anyone who was really that clueless could actually delete...

  • RE: char or nchar ?

    The impact of the size of the table is not just about space on the disk or how long the backup takes to run.

    If you have to scan a table...

  • RE: 5 TB database backup

     

    You need to look at different options to keep your database backups to a reasonable run time.

    If your database is multiple files or filegroups, you can backup...

  • RE: Script to list all PK & FK keys?

    All the ones I have looked at seem to be the same, but I can't say I was ever looking for differences.  I just didn't notice anything breaking.

     

  • RE: Float to Date

    declare @f float
    set @f =20070809100330.0
    select convert(datetime,stuff(stuff(stuff(convert(bigint,@f),9,0,' '),12,0,':'),15,0,':'))
    
  • RE: Database Size way larger than sum of table size

    This script will show you the size of all tables in the database.

    Script to analyze table space usage

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61762

     

    Maybe you just have a lot of empty space in the database. ...

  • RE: Script to list all PK & FK keys?

    I prefer to use INFORMATION_SCHEMA for this type of work because it is an industry standard schema, and less likely to change if Microsoft changes the structure of the system...

  • RE: Dealing with Backup that is taking days to complete

    You problem sounds like a hardware bottleneck, like not enough bandwidth on your network connection, poor performing disk drives on your target or source server, or not enough memory or...

Viewing 15 posts - 2,701 through 2,715 (of 3,011 total)