Forum Replies Created

Viewing 15 posts - 421 through 435 (of 692 total)

  • RE: Updating table from csv file

    It would only have to be a GLOBAL temp table if you are using bulk insert, or otherwise accessing it from separate connections.  If the insert and all the manipulation is...

  • RE: Updating table from csv file

    Dealing with a text file, I think a temporary table may be your best bet.

    Steve

  • RE: Select out rows into one result - Similar Problem

    I can't get my brain around it right now, but you may be able to do something with min or max and derived tables and maybe isnull, assuming you have...

  • RE: Search by Auto Fill Date

    I'm assuming that the date_received column is datetime format.  ...like '2004-08-20%' is character string manipulation and wouldn't work for datetime format.

    What you need is something like...

    select * from table

    where...

  • RE: Reindex selected tables

    Here's a very simple script to do what you are asking.  I also have a quite elaborate stored procedure that allows you to reindex the worst (number) of indexes or...

  • RE: Architecture of a row/table.

    Take a look at "Inside Microsoft SQL Server 2000" by Kalen Delaney.  Chapter 6, specifically pages 252 - 254 will give you the structure.

    Steve

  • RE: Table History

    No, if you need that kind of information, you would need to set up an audit table and populate it with a trigger.

    Steve

  • RE: cursors

    Jill,

    You're in very capable hands with Antares686, so to be honest, I haven't looked at your code.  But I had to chime in with my 2 cents regarding cursors.  So,...

  • RE: db "dissappears" after sysUsers table Modification

    If you can, rather than modifying the system tables, try changing the owner of the dbs in question to some other user, your own Login for example, with sp_changedbowner.  Then...

  • RE: ive lost "northwind.mdb"

    If you don't have access to another instance, you may have to re-install.  If you have enough space, you could install a named instance, backup Northwind ( or stop SQL...

  • RE: Backup mystery cleared!

    Thank you for the update and for the explicit thank you! 

    Steve

  • RE: Odbc connection Issue

    The odbc connection wizard will only show dbs that the user has access to.  You need to give the user access to the dbs you wish for him/her to use...

  • RE: Divide by zero, but divisor is not zero

    Row 17 from your view definition most likely wasn't row 17 from your query.  SQL doesn't guarantee the order that your data is presented in unless you use an "order...

  • RE: SQL 2000 Installation problem

    I can't provide any advice, but I did have the same problem recently on a new server.  Different hardware, but same OS.  After a hard reboot, installation went fine, although...

  • RE: View Issues

    If all you want is the count, you could simply subtract the count(*) of the 3 views from the count(*) of the base table.

    Steve

Viewing 15 posts - 421 through 435 (of 692 total)