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 Mike Lewis 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. pratibha14

    Filter field having decimal values only

    Hi, I have a field named Qty which can have decimal values as well. I want to filter records where qty is in decimal (not int) I did as follow: select qty from table where qty like '%'||'.'||'%' but i think this makes query slow. Is there any in-built functio (or any other way) to fetch...
  2. pratibha14

    HTTP response code 403 error

    Hi.. I want the source code of a web page. So, I wrote following code: URL u = new URL("http://www.google.com/search?hl=en&q=camera&meta="); URLConnection uc = u.openConnection(); uc.connect(); InputStream in = uc.getInputStream(); But it returns this error "java.io.IOException: Server...
  3. pratibha14

    Login Failed -- newbie question

    Why don't you provide SQL Server Authentication in AS data source instead of windows authentication. Give it a try.. as it works for me. HTH
  4. pratibha14

    Difficulties with OLAP cubes.

    toujoursla, Have you installed sp3a for SQL Server?
  5. pratibha14

    Check MDX Expression

    Hi, In role, I provide MDX expression in AllowedSet. I want to check this expression before creating role. Can anybody suggest me how to do this using its API? I am using Microsoft.AnalysisServices API to create ROLE. Thanks
  6. pratibha14

    Process is not executing

    Still no luck. I am using Windows XP and I tried to go through all combinations of permission. But hard luck. Through the example given by "Ecreations", it shows successfull execution but actually doesn't start the windows service. Thanks
  7. pratibha14

    Process is not executing

    Yes ca8msm.. When I run "Calc" instead of my batch file, it is executed. I am starting a windows service through my batch file (I know this can be done using System.ServiceProcess). To whom and How to provide permission, if its a security related problem? Thanks
  8. pratibha14

    Process is not executing

    Hi, I want to execute commands through .NET. Using process, i can execute them in WindowsApplication but the process doesn't work in WebApplication. I am executing a batch file which contains some commands to be executed. They don't have any UI and works in backgroud. Can it be security...
  9. pratibha14

    MDX question

    Hi pgdar, You have specified queries in terms of SQL queries. It would have been better if you had defined them in terms of dimesions and measures. Still I have tried to give answers of your question. filter([VW DIM TEAM].[AGENT_HIR].[Level 01].&[0].children,[Measures].[AVAILABLE TIME]=5000...
  10. pratibha14

    How to add image in dropdownlist?

    Hi Guys! I want to add text in dropdownlist with image. But I am nearly lost in finding how image can be added in dropdownlist. Thanks. Pratibha
  11. pratibha14

    Time in Millisecond

    Thanks for ur suggestions.. but i think use of kernal32 to get it was better.
  12. pratibha14

    Time in Millisecond

    Hi, I want time in milliseconds. One way that i came to knew is to use kernal32 as unmanaged code. Is there any other method known to anybody? Thanks in anticipatiion. Pratibha
  13. pratibha14

    Problem in creating windows user using adsi

    Thanks but above code also returns some error at CommitChanges() NotImplementedException: Not implemented ] System.DirectoryServices.Interop.IAds.SetInfo() +0 System.DirectoryServices.DirectoryEntry.CommitChanges() +182 Default_aspx.Page_Load(Object sender, EventArgs e) in...
  14. pratibha14

    Problem in creating windows user using adsi

    hi, From windows form application I can create new user on local machine without problem. But when I try to create new user in web application there is an error "System.UnauthorizedAccessException:General access denied error at System.DirectoryServices.Interop.IAds.SetInfo() at...
  15. pratibha14

    How to create windows user using .net

    thanks.. I got my solution thanks for showing me the direction
  16. pratibha14

    How to create windows user using .net

    Hi, I want to create windows user dynamically using asp.net. I've tried net.exe but i want some better solution. Can anyone give an example for it. Thanks
  17. pratibha14

    OLAP roles access from asp.net

    Hi friends, I want to access cube and dimension according to the permission provided in roles. so i have made a number of roles for different windows users. I use following connection string: Provider=msolap;Data Source=pratibha;initial Catalog=NewACDM;roles=Rolename But it does not access...
  18. pratibha14

    Interop Dll Problem

    hi, I have to add third party dll. But it returns the following FileNotFoundException: "File or assembly name 'TimesTen Provider, Version=6.0.3000.0, Culture=neutral, PublicKeyToken=421da04c8fc1f667', or one of its dependencies, was not found. " Also its Interop dll is not created. When i check...
  19. pratibha14

    Unable to find an entry point

    hi, i made a dll named rtbdts.dll and call it from vb.net through dllimport <DllImport("C:\misc\rtbdll\rtbdts.dll")> Public Shared Function Init() As String End Function But it returns the following error "Unable to find an entry point named 'Init' in DLL 'C:\misc\rtbdll\rtbdts.dll'." Any...
  20. pratibha14

    How to add user generated dll in vb.net

    No this is neither .Net assembly nor COM component

Part and Inventory Search

Back
Top