Search results

  1. dz2k7

    Count Lines

    $COGS is dollars of cost of goods sold. thats a number I need 4 highest values of $COGS for each item, dosen't matter what branch is that.
  2. dz2k7

    Count Lines

    Pick top$ lines for each item Hi there, LEts say I have a table branch item $COGS we have lots of same items having different $COGS in different branches and all of them are on one table I sorted that descending by $COGS. Now I want to pick for each item only 4 first lines having...
  3. dz2k7

    Add a column to the table with a query

    How I can help you?
  4. dz2k7

    Add a column to the table with a query

    Well I have SQL 2005 installed on my PC I told to my IT that I'm a gooroo in it. :) The problem is that I don't know a thing about it. I can't even link to existing table. Or to import it into SQL Server. Everything is so unclear there. I tried some books. There is lots of stuff, but I can't...
  5. dz2k7

    Add a column to the table with a query

    Yep I've got about 2.5 mil of records, 60 columns each. I manage inventory of international structure The only thing I wanted is to create a 3 digit Branch code automatically. Thank you all for your answers. That was helpful I added a column and got it done.
  6. dz2k7

    Add a column to the table with a query

    I ment 2 GB of course The thing is that that table is been downloaded from AS400 every night. The developed table is gonna be destroyed. So is it possible to add a blank column with a macro or something?
  7. dz2k7

    Add a column to the table with a query

    Hi there, I have a big table bringing Access up to almost 2G limit. I need to add a column to that table using a query. I can’t make another table because of the volume. I have 3 columns like Company Division Branch W X P I need to add the column having Company Division...
  8. dz2k7

    deleting lines

    O, I see.... Thank you, By the way... How to delete any same lines in a table anyway?
  9. dz2k7

    Downloading from AS400

    Hi everyody, Does anybody knows if there is an add-in to Access to download from AS400? Thanks.
  10. dz2k7

    deleting lines

    Well it works but takes forever. I have tables like 50000 lines. it looks through all the table for each line, so it's slow. Nad another problem is there are double lines remaining where shiping quantities are same. I mean if the are 2 pairs of branches with the same shipping brnach and same...
  11. dz2k7

    deleting lines

    Let's say we have a table: Sipping branch Receiving Branch Product # Qty to ship a c PR1 43 a d PR1 25 a k PR1...
  12. dz2k7

    About OLAP cubes

    Pls don't kick me for beginner's questions, but... I'm using Cognos to see OLAP cubes and build reports. The cubes has been built by another department. I'll have SQL server soon. I know thet SQL server can create and keep those structures. 2 questions: 1. Do I need any specific software to...
  13. dz2k7

    Move to SQL Server

    Thank you for advices. The thing is that there is nothing to administer. I'm gonna work alone with it and I've got SQL Server for my researches only. Access is just unable to chew the files I bite all the time. I'm dealing with inventory files of the really big international structure. So...
  14. dz2k7

    Move to SQL Server

    Wow! All that is above of my head! You scared me.....
  15. dz2k7

    Move to SQL Server

    I have Access 2003 and it's gonna be SQL Server 2005
  16. dz2k7

    Move to SQL Server

    I'm planning make a move from Access to SQL Server. To be honest I never used it before, but I told to my bosses that I'm a Gooroo in it.:) So can you guys give me an idea if it is really hard to make a move, to upload the existing databases and to get used to it. How long it takes? What books...
  17. dz2k7

    How to change lowercase letters?

    UPDATE WX SET WX.SLOC = WX.SLOC & "_" WHERE Asc(WX.SLOC)>=97 And Asc(WX.SLOC)<=122 WITH OWNERACCESS OPTION; This is the right one
  18. dz2k7

    How to change lowercase letters?

    Yahooooo!!! It works I just put UPDATE wx AS sloc SET sloc.SLOC = sloc & "_" WHERE (((Asc([sloc]))>=97 And (Asc([sloc]))<=122)) WITH OWNERACCESS OPTION; The table name is WX The fild name is SLOC Thanks guys!
  19. dz2k7

    How to change lowercase letters?

    I'd like to but how to make this Update query Case sensitive?
  20. dz2k7

    How to change lowercase letters?

    Now, I have a big table with sales data downloaded from DB2. We have branches codes of 1 digit only. Because of too many branches we have branch codes in upercase and lowercase. So Q ans q are different branches. I'd like to substitute all lowercase codes like q with something like q_ to make...
Back
Top Bottom