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 strongm 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: *

  1. jeffmoore64

    ole db datareader help

    Thank you for the code. It really is a big help
  2. jeffmoore64

    ole db datareader help

    jebenson... I'm a newbie on vb.net. Got any good code snippits to share? zmrabdulla... sorry no autonumber id column. I just need to do a movelast, read it, then delete it, then do a move movelast again.
  3. jeffmoore64

    ole db datareader help

    Hi, I'm trying to get that good old "movelast" functionality with the datareader in vb.net. I understand that this is a forward only dataset. What I need is the last record in my retrieved data set and then the one prior to it etc. I can find no fuctionality in the datareader that will allow...
  4. jeffmoore64

    Excel and the getpivotdata function

    I forgot to mention, The data source for the pivot table is an Analysis Server 2005 cube. Jeff
  5. jeffmoore64

    Excel and the getpivotdata function

    Hi all, I need to know how to use the NAME property when I use the getpivotdata function. Here is an example of the issue: Key value = "BMX" Name vale = "BMX BIKES" Here is what excell generates when I create the getpivotdata function: =GETPIVOTDATA("[Measures].[Extended Price USD -...
  6. jeffmoore64

    Excel and the getpivotdata function

    Hi all, I need to know how to use the NAME property when I use the getpivotdata function. Here is an example of the issue: Key value = "BMX" Name vale = "BMX BIKES" Here is what excell generates when I create the getpivotdata function: =GETPIVOTDATA("[Measures].[Extended Price USD -...
  7. jeffmoore64

    Dir code fails

    Here is my work around.... Private Sub Command6_Click() On Error GoTo Err_Command6_Click Dim stAppName As String Dim stFolder As String Dim fs, f Set fs = CreateObject("Scripting.FileSystemObject") stFolder = "\\waterloo16\shared\" Set f =...
  8. jeffmoore64

    Dir code fails

    yes the path does exist. Try changing the path or share name to one that doesn't exist. What will happen is that it will open windose explorer to your root c: dir
  9. jeffmoore64

    Dir code fails

    This code throws the error " Bad filename or number" at the arrow. The path does exsist on the remote pc. It does work if I use a local folder though. Any suggestions on how to get around this? Dim stAppName As String Dim stFolder As String stFolder = "\\waterloo16\shared"...
  10. jeffmoore64

    Calaculated dim not showing in Excell 2007

    Thanks!! The work around is messy from a users stand point though... Most of my users will never grasp what or why they will need to do that. sigh.....
  11. jeffmoore64

    Calaculated dim not showing in Excell 2007

    Hi, I have a set of dims; YTD, MTD, etc that are basised on MDX queries. These do NOT show up in Excell 2007. But they do show up in Excell 2003 and in the AS Browser. Any Ideas? TIA Jeff
  12. jeffmoore64

    Format string issues in AS2005

    Thanks. I figured so after fussing with it.
  13. jeffmoore64

    Format string issues in AS2005

    Hi all, I have 2 calc'd members one that has "#,#" as its' format string and another that has "percent" I view the data 3 ways: Excel 2000 Excel 2005 The cube browser. The data for the "#,#" is presented as follows for each browser: 1234.56789 1,234 1,234 The data for the "percent" is...
  14. jeffmoore64

    Log files growing out of control

    The log file has grown from 40Mb to 135Gb in the last 15 hours...... I wish I knew where to set the top end. If I did I'd just grow the thing manually. Some thing is causing the transaction log to not truncate on the check points.
  15. jeffmoore64

    Log files growing out of control

    Hi. I have a db that has the following settings: -truncate on check pt. on -recovery mode simple -it is not published for replication -auto shrink false -auto close false -auto create stats true -auto update stats true We are loading the db using an ETL tool called Data Inegrator. It has a...
  16. jeffmoore64

    Question about syntax

    What does the &[0] mean? I can't seem to find a reference to the & in BOL TIA [Dates].[Intl Model Year].[Fiscal Month].&[0]
  17. jeffmoore64

    2 Autogrow or not 2 autogrow......

    Very VERY Nice. Of course I read this post after I had half writen my own version of an auto grow sp... No matter this ggives me that elusive % free space :) Thanks and heres your star
  18. jeffmoore64

    2 Autogrow or not 2 autogrow......

    An interesting side note: When runing the code you sent me; All but two of my db's report a growth of 80KB!! In reality almost all of my db's are set to 10%
  19. jeffmoore64

    2 Autogrow or not 2 autogrow......

    Also ... where did you get some of that info on the sysaltfiles table? I looked it up on the BOL and it gives no info on the column "Status". Hence I can't read into what or how you got the "log only/data only" flags baised on the 0x40 in the status column.
  20. jeffmoore64

    2 Autogrow or not 2 autogrow......

    Wait, you're saying to set some upper limit for my dbs and monitor when I'm within say 10% of full. So I have a 100gb db. I set the MaxSize to say 120gb. (20% free space) I run a script nightly to watch for the 10%. If 10% then we branch to a script that will force the increase the db's...

Part and Inventory Search

Back
Top