Forum Replies Created

Viewing 15 posts - 1 through 15 (of 16 total)

  • RE: Getting space back after manually deleting records

    Thanx Greatly !!!!

  • RE: Selective restore

    sp_helpfile

    bc_Data1c:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\bc_Data.mdfPRIMARY1681856 KBUnlimited10%data only

    bc_Log2c:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\bc_Data.ldfNULL3840 KBUnlimited10%log only

  • RE: Selective restore

    Now that I have fully wasted your time...I appologize. I went back into the database (after thinking because I usually don't just delete items)..I had renamed the field with...

  • RE: Selective restore

    The manager of that data decided that the field wasn't needed. Then after we deleted the field, it was decided that "well...actually-hold onto it" two weeks after the fact....

  • RE: UniqueIdentifiers

    Thank you everyone !!!!

    I'll try it...we have 28 change logs each in their own database that I want to make a lookup file to facilitate a lookup without having to...

  • RE: UniqueIdentifiers

    You're right...however, I should have explained more...it's not my database. I might be able to download it to my machine but its huge, etc. I'm relatively new to...

  • RE: desktop engine 2000 versus SQL 2000 server

    Thank you for the info !!! Thant's exactly what I needed...we have over 10 users and later on...more. We need to upgrade !

  • RE: restoring change logs

    Terry...thanx for the link...it adds some light to the end of my tunnel. Most of my IT is VFP, VB, and MUMPS. I'm new to but getting there...

  • RE: restoring a databse with change logs

    Our system is a small database system written in VB and SQL, keeping all the data in SQL. It has a backup utility that backs up to the files...

  • RE: restoring a databse with change logs

    Our system backs up the data into the "bu" file. When the data is restored thru the menu system, the change logs are restored. However, the latest build...

  • RE: finding the people who have a missing data item

    Thank you !!!! It works very well. I took it a step further and used your suggestion to select into a temp file, then took that temp...

  • RE: finding the people who have a missing data item

    my table consists of two columns, NAME and YEAR. When the person visits, we record their name the current year. The queries I used/came up are in the...

  • RE: Split text by empty spaces

    For a table called "ADDRESSES" with a column "NAME", the following will parse out the space-delimited NAME (the entire column) to its separate pieces into a temp table '#N2' ...

  • RE: Split text by empty spaces

    You are so correct...I had worked out a solution in ACCESS by using the INSTR and MID functions, as well as column aliases to be able to work the data...

  • RE: Split text by empty spaces

    A quick way is to use the INSTR, MID, LEFT, RIGHT functions.

    If your column is NAME,

    left(NAME,instr(NAME," ")-1) will give you the first part

    mid(NAME,instr(NAME," ")+1,50) will give you the start of...

Viewing 15 posts - 1 through 15 (of 16 total)