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 dencom 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: jepe666
  • Content: Threads
  • Order by date
  1. jepe666

    Simple Function ChangeImage can't work in Firefox

    I have problem in firefox,my code works in IE... here's my code: <html> <head> <SCRIPT LANGUAGE="JavaScript"> function changeImage(filename) { mainimage.src =filename; } </script> </head> <body> <a href="javascript:changeImage('includes/images/fotoproduk/CRJ624.jpg')"><img...
  2. jepe666

    automatic printing of Reporting Services

    can anyone knows how to automatic printing of reporting services? can using subscription?? thanks for advance..
  3. jepe666

    2 servers in One Report

    Can I create a report with 2 servers?? thanks for advance..
  4. jepe666

    Access to the database file is not allowed

    when i want to upload .sdf file in emulator to the PC, I got "Access to the database file is not allowed".. But I have no ideas for this error, please can help me?? thanks for advance
  5. jepe666

    how to syncronize database

    after the inserted have fixed,i find the next problem... how to syncronize between a server database and a SQL Compact database on a Windows Mobile 6 device??? anybody help me?I'm very newbie of this.. thanks for advance...
  6. jepe666

    can't inserted

    please help me, i have coding like : try { SqlCeConnection connectionstring = new SqlCeConnection(@"Data Source=" + (System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) + "\\barang.sdf;Persist Security Info=False;"))...
  7. jepe666

    problem with update

    I have problem with update.. I have lay out form like this : checkbox custname percentage 1 custA 20 2 custB 20 3 custC 20 4 custD 20 5 custE 20 i want to update percentage,in...
  8. jepe666

    about stored procedure

    I using stored procedure in my report..but why i did't find any field in it?? so i can't create report table without field in dataset(stored procedure) please help..
  9. jepe666

    KPIs help

    I don't know,is this a correct forum for KPIs question?? But If somebody know well about KPIs,please help me... I create KPIs in SSAS2005,but how to publish it into the web?? If somebody have tutorial about KPIs,can share it to me?? Thanks for all
  10. jepe666

    HELP!!How to separate comma and space??

    I have problem,i have data like: SiteID ======= 0100000, 0201T00, 0301T00, 0401T00 I want get output like: 0100000 0201T00 0301T00 0401T00 I want to disappear comma and space..how can i solve this problem??Help
  11. jepe666

    Can using 2 databases in one dataset?

    I using syntax like this : =Switch(RTrim(Parameters!companyID.Value)=”01”,"Data Source=ServerName;Initial Catalog=SC","Data Source=ServerName;Initial Catalog=BI") I put it to dataset->edit->data source->connection string.. When I deploy, no error, but when i preview i got error "error during...
  12. jepe666

    Passing Parameter for a cube

    Can cube do passing parameter? thanks for advence..
  13. jepe666

    Error 80004005 : OLE DB or ODBC error

    My code like : strProvider = "PROVIDER=MSOLAP.3" strLocation = "LOCATION=c:\DocumentCube.cub" strSourceDSN = "Data Source=localhost;Initial Catalog=AdventureWorksDW;Integrated Security=SSPI" Set cn = New ADODB.Connection s = strProvider & ";" & strLocation & ";" & strSourceDSN & ";" &...
  14. jepe666

    can Create Cube without wizard/editor?

    can create a cube without wizard/editor? can using script to create it?
  15. jepe666

    Error JOB And SSIS

    I create cube in SSAS, i must reprocess each dimension to update new data..I using SSIS package to process them,but it doesn't work.. Step create ssis package: 1.add connection manager 2.create analysis services processing task (process cube and all dimension) 3.deploy it 4.create job in sql...
  16. jepe666

    [b]The Scripts contains the statement,which is not allowed[/b]

    I write script REFRESH CUBE [cube name],and i deploy it,and got error : "parse:the script contains the statement,which is not allowed" what should i do? please help me.... thanks ^_^
  17. jepe666

    Put MDX Query?

    i'm very newbie about SSAS..Frendz can u help me?how i put mdx query in SSAS?How part?
  18. jepe666

    error of REFRESH CUBE

    i want to refresh cube in SSAS with syntax: REFRESH CUBE <cube_name> but i got error :identifier cube.. what should i do? please help!!! thanks all... --jovian--
  19. jepe666

    Refresh cube?

    i have cube,but data in that cube must be refresh manually..my question : can I refresh that cube automatically?? thanks all friendz...
  20. jepe666

    create user with password ADSI using ASP

    i have trouble to create user with password using asp.. here's my code : <%@ Language=VBScript %> <html> <head> </head> <body> <% Set oDomain = GetObject("GC://pdcserver/ou=usersaccounts,dc=mycorp,dc=intranet") Set oUser = oDomain.Create ("user","cn=testing") oUser.Put "sAMAccountName"...

Part and Inventory Search

Back
Top