Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: CInman
  • Order by date
  1. CInman

    Why does BACKUP LOG... not parse properly

    Yeah, that is the database name, which is why I don't understand it?
  2. CInman

    Why does BACKUP LOG... not parse properly

    For some reason, the following command generates an error when parsed: BACKUP LOG joebloggs WITH TRUNCATE_ONLY and the error when parsed is: Server: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near 'joebloggs'. Does anyone know why?
  3. CInman

    How simple can restoring be?

    I have a simple problem that is doing my head in because I'm sure I'm missing something really really obvious! Backed up SQL7 d/b to .bak file, then want to restore it to SQL2K server ... and when I try to restore it this happens: Microsoft SQL-DMO(ODBC SQLState 42000) Cannot open backup device...
  4. CInman

    SP3 installation won't recognise "sa" password

    SQL Server 2000, running fine having just upgraded from 6.5. Trying to apply SP3 and it asks me for sa password, but no matter what I type in (and I'm typing in the valid password) it refuses to accept it? Is there some low-level metabase password that has changed, or something?
  5. CInman

    Hooking Enterprise Mgr to MSDE?

    Is it possible to hook up SQL Enterprise Manager to manage MSDE server? I'm looking to have a small SQL Server, and MSDE seems to be the answer (cost free, etc.) but I cannot "manage" it (e.g. restore db, create db, etc.) ... if I cannot use Enterprise Manager, then how do I do it?
  6. CInman

    Sort order on SQL 2000

    I understand SQLv7 has server-level sort order, but SQLv2000 has database level sort-order. Does anyone know how you define the database-level sort order on SQLv2000? as I can't find anything on Microsoft website or in SQL Help?
  7. CInman

    Turning off Secure Password Authentication

    I notice in the PROTOCOLS area, under POP3, that there are various authentication methods available. Firstly, which one is Secure Password Authentication (is that Windows NT challenge/response?) using SSL? and can this be set/unset on an account by account basis?
  8. CInman

    Turning off Secure Password Authentication

    Can you turn off Secure Password Authentication for a particular account (in other words, at account/login level) on Exchange Server?
  9. CInman

    RegSvr utility??

    Is there a way to list all registered and non-registered files?
  10. CInman

    Can I delete a logfile then start SQL Server?

    Can I delete an .LDF file and then start SQL Server? Will it start okay? (SQL Server 7.0)
  11. CInman

    SQL Server won't start **** AARRGGHHH!!!****

    ... thanks mate, but I've checked that and its not the problem. It tells me that database "Sunrise" has a full logfile and therefore refuses to start SQL Server ... how bizarre!?!
  12. CInman

    SQL Server won't start **** AARRGGHHH!!!****

    A SQL Server 7.0 won't start, saying that one of the datbases' logfile is full. I'm cool with clearing down full logfiles, but I don't understand how SQL Server won't start due to one being full? Of course, because it won't start, I cannot do anything ... ANY IDEAS ANYONE PLEASE VERY...
  13. CInman

    Unknown recipient - but I didn't invite them?!?

    You were absolutely right --- brilliant, and thanks for your help. We thought we'd looked everywhere, but obviously we had not !?! Thanks mate.
  14. CInman

    Unknown recipient - but I didn't invite them?!?

    Every time I send a meeting appointment to a particular colleague, via our internal Exchange 5.5/Outlook 2000 implementation, I get this error: Your message did not reach some or all of the intended recipients. Subject: My New Meeting Sent: 25/02/03 14:10 The following...
  15. CInman

    How to search for all fields like "string" in a database?

    Brilliant --- I'll try both ideas right now, thanks ;-)
  16. CInman

    How to search for all fields like "string" in a database?

    I want to search a whole database for fields "like" a string, and cannot work out how to do it? I suspect the stored procedures sp_columns and sp_fields could come into play with some flow control, but I simply cannot get my head round it? Does anyone have any ideas?
  17. CInman

    Maximum no. of users in IIS?

    Someone told me there is a maximum of 255 concurrent users in IIS - is this right? I find it hard to believe, so thought I should consult the experts :-)
  18. CInman

    Any suggestions where I should go ... ?

    Thank you webgs, I will take a look at that authentix software and see what it can offer me. Many thanks for your time and advice. Chris.
  19. CInman

    Any suggestions where I should go ... ?

    Dear all, I am a manager who has recently been "given" the responsibility for an IIS installation/product/etc. and would like to know more about how to control access both internally (intranet) and externally (extranet or internet) from this server. There must be somewhere I can go...
  20. CInman

    My cursor is always READ ONLY - WHY?

    I use the following code: DECLARE curItem CURSOR FOR SELECT MH_Desc FROM Item FOR UPDATE OPEN curItem FETCH NEXT FROM curItem WHILE (@@FETCH_STATUS=0) BEGIN ... etc ... and when I run it, I am told: Server: Msg 16929, Level 16, State 6, Line 7 The cursor is READ ONLY. The error seems to...

Part and Inventory Search

Back
Top