Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 2,903 total)

  • RE: DBA's vs Developers

    I think DavidB made the best point. It's not Management, whether they are good or bad. It's US, whether we are developers or DBA's. WE have to co-operate with each...

  • RE: Connecting from Crystal Reports

    Thanks to both of you. I wanted to do this for two reasons....better security and some of my user's queries were crashing their systems and taking too long. This way...

  • RE: Need Help Soon..... Last Record in a Huge Table???

    Can you tell us what the fields are? Do you have a datetime field?

    If you have a datetime field that holds the datetime of the entry, you could do:

    select *

    from...

  • RE: sql 2000 desktop edition

    Here's what I found out from Microsoft's web site: (http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/sql/reskit/sql2000/part2/c0361.asp)

    SQL Server 2000 Personal Edition is not a separate product but rather a client component of SQL Server 2000...

  • RE: sql 2000 desktop edition

    There isn't a 'desktop' version. There's the Personal Edition and MSDE edition.

    Which is the one you want?

    -SQLBill

  • RE: NOT SELECT DISTINCT

    Is there an ID on each row?

    If so, have you tried:

    SELECT *

    FROM mytable

    WHERE myid NOT IN (SELECT DISTINCT * FROM mytable)

    -SQLBill

  • RE: Operating system error 112(There is not enough spa

    Where are you trying to save it on the destination server? Is it a partitioned drive? How much space is in that partition?

    For example: The destination server could have a...

  • RE: Newbie SQL question

    Or you could use IS NULL:

    UPDATE mytable

    SET mycolumn = 'newentry'

    WHERE mycolumn IS NULL

    -SQLBill

  • RE: Newbie SQL question

    Check out the Books OnLine for ISNULL.

    ISNULL(check_expression, replacement_expression)

    Select ISNULL(mycolumn, 'NewEntry')

    -SQLBill

  • RE: Problem with the type datetime

    Your query could be truncating the time from the column. That's what I would check first.

    For example, try this in Query Analyzer:

    select getdate()

    select convert(varchar(10), getdate(), 120)

    -SQLBill

  • RE: How about this for a contest.

    Great idea for those who could participate. Maybe a poll could be used to find out how many can/will participate. I can't for three reasons:

    1. don't have a test/development setup...

  • RE: Backup strategy

    I run an active/passive cluster (Win2K Advanced Server/SQL Server 2000). One database is currently 160+ GB, one table is 528,000,000+ rows. The database gets BULK INSERTs and SELECTs only. BULK...

  • RE: tempdb is not getting recreated

    Have you tried using Enterprise Manager, right clicking on TEMPDB, selecting properties and then checked to see the default size of the database? That's what TEMPDB will start at when...

  • RE: Backup Tips

    I do both depending on how long I need to keep my backup. I append my Full Backups; since one might be bad I want more options.

    I overwrite my differentials,...

  • RE: Backup issue

    This is a "double" posting and is also in the section for BACKUPs. Since that's the more appropriate area, let's allow this one to cease and respond to the other...

Viewing 15 posts - 2,731 through 2,745 (of 2,903 total)