Can we perform Join operation using SQLCall with Datatabae Query

Hi,
I am working on Toplink SQLCall query. I am performing join operation but, it is giving error.
so please, any can tell me . we can perform join operation using SQLCall with Database Query
Thanking You.

You can use joining with SQLCall queries in TopLink, provided your SQL returns all of the required fields.
What is the query you are executing and what error are you getting?

Similar Messages

  • How can I perform a communication using UTP with LV?!

    Hello,
    I´m want to perform a communication between two computers using UTP.
    I´m want to sent a sinousidal signal and receive the same signal at
    same frequency. How can I complete this job?!
    Thanxs

    8144-9199 wrote:
    Hello,
    I´m want to perform a communication between two computers using UTP.
    I´m want to sent a sinousidal signal and receive the same signal at
    same frequency. How can I complete this job?!
    Thanxs
    You probably mean UDP. UTP is the type
    of cable used for networks. That said it is usually better to use
    TCP/IP for communication between two applications. For both open
    Help->Find Examples and search for TCP or UDP in there to find some
    eaxamples how to achieve what you want.
    Rolf Kalbermatter
    Message Edited by rolfk on 06-12-2006 02:36 PM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Cant schedule refresh - We can't perform this operation because this workbook uses unsupported features. Correlation ID: 42e1a475-20ea-41ae-9d8d-e1889d4c2d77

    Hi all,
    I have a workbook with a set of scheduled refreshes (powerquery via the gateway from web api). I've modified it by adding a new source from the azure marketplace. I've successfully added it to the DMG
    I've uploaded the new report and I'm able to browse it successfully in powerbi
    But when I try to schedule a refresh I get the following error against all the data connections
    We can't perform this operation because this workbook uses unsupported features. Correlation ID: 42e1a475-20ea-41ae-9d8d-e1889d4c2d77
    Also get the error if I uncheck the new data source
    Below is my PQ query for the new data source. Which unsupported feature am I using?
    let
    Source = Marketplace.Subscriptions(),
    #"https://api.datamarket.azure.com/Data.ashx/BoyanPenev/DateStream/v1/" = Source{[ServiceUrl="https://api.datamarket.azure.com/Data.ashx/BoyanPenev/DateStream/v1/"]}[Feeds],
    ExtendedCalendar1 = #"https://api.datamarket.azure.com/Data.ashx/BoyanPenev/DateStream/v1/"{[Name="ExtendedCalendar"]}[Data],
    #"Filtered Rows" = Table.SelectRows(ExtendedCalendar1, each [YearKey] >= 2010 and [YearKey] <= 2020),
    #"Inserted End of Month" = Table.AddColumn(#"Filtered Rows", "EndOfMonth", each Date.EndOfMonth([DateKey]), type datetime),
    #"Inserted End of Quarter" = Table.AddColumn(#"Inserted End of Month", "EndOfQuarter", each Date.EndOfQuarter([DateKey]), type datetime),
    #"Inserted End of Week" = Table.AddColumn(#"Inserted End of Quarter", "EndOfWeek", each Date.EndOfWeek([DateKey]), type datetime),
    #"Renamed Columns" = Table.RenameColumns(#"Inserted End of Week",{{"DateKey", "Date"}}),
    #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"Date", type date}, {"EndOfMonth", type date}, {"EndOfQuarter", type date}, {"EndOfWeek", type date}}),
    #"Renamed Columns1" = Table.RenameColumns(#"Changed Type",{{"YearKey", "CalendarYear"}}),
    #"Inserted FiscalYear" = Table.AddColumn(#"Renamed Columns1", "FiscalYear", each Date.Year(Date.AddMonths([Date],6)), type number),
    #"Inserted FiscalMonth" = Table.AddColumn(#"Inserted FiscalYear", "FiscalMonthSortId", each Date.ToText(Date.AddMonths([Date],6),"MM"), type number),
    #"Inserted Month" = Table.AddColumn(#"Inserted FiscalMonth", "FiscalMonth", each Date.ToText([Date],"MMMM"), type text),
    #"Inserted Month1" = Table.AddColumn(#"Inserted Month", "CalendarMonthSortId", each Date.ToText([Date],"MM"), type number),
    #"Added Custom" = Table.AddColumn(#"Inserted Month1", "DateIsWeekDay", each if [DayOfWeekMon] > 5 then "no" else "yes"),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "HoursPerWeekDay", each if [DateIsWeekDay] = "yes" then 7.5 else 0.0),
    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom1",{{"DateIsWeekDay", type text}, {"HoursPerWeekDay", type number}}),
    #"Added Custom2" = Table.AddColumn(#"Changed Type1", "Custom", each Function.Invoke(DateTimeZone.UtcNow,{})),
    #"Split Column by Delimiter" = let #"Changed Type" = Table.TransformColumnTypes(#"Added Custom2", {{"Custom", type text}}, "en-AU"),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Changed Type","Custom",Splitter.SplitTextByDelimiter(" +"),{"Custom.1", "Custom.2"})
    in #"Split Column by Delimiter",
    #"Changed Type2" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Custom.1", type datetime}, {"Custom.2", type time}}),
    #"Removed Columns" = Table.RemoveColumns(#"Changed Type2",{"Custom.2"}),
    #"Renamed Columns2" = Table.RenameColumns(#"Removed Columns",{{"Custom.1", "RefreshDateUtc"}}),
    #"Added Custom3" = Table.AddColumn(#"Renamed Columns2", "RefreshDateLocal", each [RefreshDateUtc] + #duration(0,10,30,0)),
    #"Changed Type3" = Table.TransformColumnTypes(#"Added Custom3",{{"RefreshDateLocal", type text}}),
    #"Added Custom4" = Table.AddColumn(#"Changed Type3", "RefreshDate", each [RefreshDateLocal] & " (UTC + 10.5)"),
    #"Changed Type4" = Table.TransformColumnTypes(#"Added Custom4",{{"DateInt", Int64.Type}, {"CalendarYear", Int64.Type}, {"HalfYearKey", Int64.Type}, {"QuarterKey", Int64.Type}, {"MonthKey", Int64.Type}, {"MonthOfYear", Int64.Type}, {"MonthOfHalfYear", Int64.Type}, {"MonthOfQuarter", Int64.Type}, {"QuarterOfYear", Int64.Type}, {"QuarterOfHalfYear", Int64.Type}, {"HalfYearOfYear", Int64.Type}, {"DayOfYear", Int64.Type}, {"DayOfHalfYear", Int64.Type}, {"DayOfQuarter", Int64.Type}, {"DayOfMonth", Int64.Type}, {"DayOfWeekMon", Int64.Type}, {"DayOfWeekSun", Int64.Type}, {"WeekOfYearISO", Int64.Type}, {"FiscalYear", Int64.Type}, {"FiscalMonthSortId", Int64.Type}, {"CalendarMonthSortId", Int64.Type}}),
    #"Added Custom5" = Table.AddColumn(#"Changed Type4", "CalendarMonthId", each [DateInt]/100),
    #"Round Down" = Table.TransformColumns(#"Added Custom5",{{"CalendarMonthId", Number.RoundDown}}),
    #"Changed Type5" = Table.TransformColumnTypes(#"Round Down",{{"CalendarMonthId", Int64.Type}}),
    #"Added Custom6" = Table.AddColumn(#"Changed Type5", "Custom", each Date.ToText([Date],"ddd")),
    #"Renamed Columns3" = Table.RenameColumns(#"Added Custom6",{{"Custom", "DayName"}}),
    #"Added Custom7" = Table.AddColumn(#"Renamed Columns3", "PastMonthFilter", each if [CalendarMonthId] < Number.FromText(DateTimeZone.ToText(Function.Invoke(DateTimeZone.UtcNow,{}),"yyyyMM")) then 1 else 0)
    in
    #"Added Custom7"
    Jakub @ Adelaide, Australia Blog

    I don't think that's it. I deleted all the powerview reports and worksheets containing pivot tables/charts, and the refresh worked with the function.invoke() call.
    The only reason that's in there is because the execution stops there when I dont have it and i have to manually click an 'invoke' button. If there's a way to get around that i'll happily try that instead.
    Hmm.. i think I found it, but i'll need to do some testing next year after the holidays to verify
    I had added two text boxes (name and desc) to one of my worksheets. I was able to test connection/schedule and run a refresh once I had deleted them.
    Weird, because o365 excel services had no problem displaying the worksheet containing the text boxes, but it looks like workbooks that contain text boxes don't work on a scheduled refresh
    Jakub @ Adelaide, Australia Blog

  • I get an error message that you can't perform this operation

    My client gets an error message that "You can't perform this operation on this page now because someone (me) is currently editing or reviewing it." But I'm not. What is going wrong?

    Please ask your client to clear Contribute preference once and try the same scenario.
    Here are the steps how to clear the Contribute Preferences:
    For Mac, Contribute CS5
    1) Quit Contribute.
    2) (a) Go to "user/Library/Preferences" and delete the file "Adobe Contribute 6 Preferences".
    (b) Go to "user/Library/Application Support/Adobe/" remove "Contribute CS5".
    For Mac, Contribute CS4
    1) Quit Contribute.
    2) (a) Go to "user/Library/Preferences" and delete the file "Adobe Contribute 5 Preferences".
    (b) Go to "user/Library/Application Support/Adobe/" remove "Contribute CS4".
    If you use CS3, then delete "Adobe Contribute 4.1 Preferences" and "Contribute CS3" folder.
    For Win, Contribute CS5
    1) Quit Contribute.
    2) From Command prompt run the below two commands to remove the preferences
    a) reg delete "HKCU\Software\Adobe\Contribute 6" /f
    b) RD /S /Q "%Userprofile%\Local Settings\Application Data\Adobe\Contribute CS5"  
    For Win, Contribute CS4
    1) Quit Contribute.
    2) From Command prompt run the below two commands to remove the preferences
    a) reg delete "HKCU\Software\Adobe\Contribute 5" /f
    b) RD /S /Q "%Userprofile%\Local Settings\Application Data\Adobe\Contribute CS4"
    For CS3
    a) reg delete "HKCU\Software\Adobe\Contribute 4.1" /f
    b) RD /S /Q "%Userprofile%\Local Settings\Application Data\Adobe\Contribute CS3"
    Note: when you clear the preference all the existing connections will be lost. The connections needs to be recreated.
    Hope this helps you.

  • "Can not perform this operation because the layout is too complex"

    "Can not perform this operation because the layout is too complex"
    to create a 3D extrusion
    Hello
    Is it possible to work around and solve this problem?
    Without going through the box: cutting 4 part
    please
    xavier.

    Merci Violon popur tes conseilles, cool !
    After clipping of an object on a photo
    I want to make a 3D extrusion.
    With a picture of this size that does not work :
    1979/2765 300PP 31,3Mo
    I have this error message appears: “ Can not perform this operation because the layout is too complex ”
    For successful operation
    I must necessarily reduce the size of the photo to
    597/834 300PP 2,85Mo !!!
    How not to lose the pixel ?
    I need it additional plugins ?
    Version Adobe Photoshop : 14.2 (14.2 20131211.r.515 2013/12/11:23:00:00) x64
    Système d'exploitation : Mac OS 10.9.1
    Architecture système : UC Intel Famille :6, modèle :44, niveau :2 avec MMX, SSE Entier, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Nombre de processeurs physiques : 12
    Nombre de processeurs logiques : 24
    Vitesse du processeur : 2930 MHz
    Mémoire intégrée : 32768 Mo
    Mémoire libre : 27285 Mo
    Mémoire disponible pour Photoshop : 31299 Mo
    Mémoire utilisée par Photoshop : 90 %
    Taille de la mosaïque d'images : 1024K
    Niveaux de mémoire cache de l'image : 4
    2 X 2,93 GHz 6-Core Intel Xeon
    NVIDIA Quadro 4000 2048 Mo
    4 X 8 (32 Go) DDR3 @ 1066Mhz
    2 X OWC Mercury Extreme Pro 6G SSD Media (System acquisition / Projects)
      2 x 2 To de DD (5400tr/min)

  • I'm trying to use a madcatz controller on the mac but it turns on for 2 seconds and turns off. the system profiler picks it up as a xbox 360 gamepad but says its not been configured. how can i allow my self use this with my games.

    i'm trying to use a madcatz controller on the mac but it turns on for 2 seconds and turns off. the system profiler picks it up as a xbox 360 gamepad but says its not been configured. how can i allow my self use this with my games!

    I have exactly the same problem.
    I'm a little peed-off with Microsoft on this. The original wireless controller I have doesn't work either since the cable I'm using is 'just' the charge and play cable, so a direct connection to my Mac won't work with this cable. It's a cable for god's sake. Why on EARTH put any limitations on this!?!?
    Next I learn I need an additional USB wireless receiver from Microsoft to get my original 360 controller to talk to my Mac. As I certainly don't want to fork any more microsoft dollars on this, this is not an option.
    Next I think, yes! I have a MadCatz 360 wired USB controller. This should surely do the trick just plugging it in and the way I go. But oh no, for some reason I plug my MadCatz Xbox360 controller in, it flashes a few times then switches off and can't be turned on again.
    The System Profiles recognizes it as a MadCatz 360 device controller but that is about it, but the ontroller software I download for the System Prefs (360Controller, USBOverdrive etc) don't even recognize the controller as being plugged in.
    What the **** Is The Microsoft Deal with all of this!?!?
    PS: Oh, and I forgot to mention, there are No drivers for device 4716 that I can find on the MadCatz website, or am I going blind?
    If anyone has a link, it would be appreciated.
    Message was edited by: nostrawaggus

  • I can't paste nor copy using IDLE with Python 2.7. Can somebody fix the problem

    I can't paste nor copy using IDLE with Python 2.7.
    Can somebody fix the problem

    I just launched IDLE for Python 2.7.2 on Mac OS X 10.8.4.
    The defaults for IDLE assume a PC environment and not Mac, thus it was expecting control+c, control+v for copy and paste. Under the IDLE Options menu, Configure IDLE...
    Under the Keys tab, Use a built-in key set, select IDLE Classic Mac. Now command+c, command+v work.
    Since I didn't want to squint, I set my Font to Ubuntu Mono 14 pt.
    I applied these settings and clicked ok.
    I successfully copied from a terminal window and pasted into IDLE with no issue.

  • I bought a Apple Care Protection Plan for a Iphone 4, but now i dont need it. Can i keep it and use it with a new model Iphone (iphone 5 when it comes out) or are the protection plans generation specific

    I bought a Apple Care Protection Plan for a Iphone 4, but now i dont need it. Can i keep it and use it with a new model Iphone (iphone 5 when it comes out) or are the protection plans generation specific?

    See Here for
    Transfer coverage of an AppleCare agreement
    http://support.apple.com/kb/HE58

  • I got an iphone from three network Uk, I am planning go to have holidays abroad for one and a half month, I request to my mobile company if they can unlock my iphone to use abroad with another sim , after one week they unlock my mobile.

    I got an iphone from three network Uk, I am planning go to have holidays abroad for one and a half month, I request to my mobile company if they can unlock my iphone to use abroad with another sim , after one week they unlock my mobile.and my  basic questions , if for any reason someone stole my iphone, they can activate in other country because my iphone is unlocked with the original codes.

    Yes.

  • My original iPad2 was stolen, can I prevent thieve to use it with iTunes?

    My original iPad2 was stolen, can I prevent thieve to use it with iTunes?
    Unit was blocked by code and Find My Phone enebled but appears offline..

    There is something wrong really. I could not locate my second iPhone2 (replacement for the stolen one) with cover closed (and pin locked). Impossible to locate it at all. I had to turn the location services off and on again and since this it started to work. But even so, it does not update the location - it just show the last located place (like one hour ago) until is pin unlocked. This is useless. By BB bold 9900 is possible to find on map even when is in holster and pinlocked. All it need is GSM signal. It show circle where it may be and when is on GPS signal, it update the ring diametre automatically - all without need to unlock the phone with pin code.
    Please try to check it, if it does not work when the iPad is pinlocked, then it does not have sense.

  • Can't perform emptyfile operation on .mdf?

    Hi all, 
    I'm trying to move data from the original .mdf for a database into 8 new db files which I have already created as primary. 
    USE [db_qr2]
    GO
    DBCC SHRINKFILE (N'db_qr2_data' , EMPTYFILE)
    The problem is that every time I try to do this I get the following error message:
    Msg 2555, Level 16, State 2, Line 1
    Cannot move all contents of file "db_qr2_data" to other places to complete the EMPTYFILE operation.
    Not sure why it won't let me. Ideally I want to empty the file to delete it and have it replaced by the 8 new .mdf files. 
    How can I get this to empty properly for deletion?

    Yes, you can remove the old MDF, but you have to create a new one first by changing the name firstThe
    ALTER
    DATABASE[tempdb]MODIFYFILE(
    NAME=N'tempdev',
    NEWNAME =N'tempdev_1',
    FILENAME=N'V:\Instance
    7\tempdb_1.mdf',
    SIZE=100MB,
    FILEGROWTH=0%);
    This changes the focus away from the original file  'tempdb.mdf' by rename it logically and physically to 'tempdb_1' as the syntax show.. NOW the original file can be deleted from the disk for it is unlocked
    Next you want to bring the MDF file back up to a usable level like 1000 or 10K GB ...
    ALTER
    DATABASE[tempdb]MODIFYFILE(
    NAME=N'tempdev_1',
    SIZE=10000MB,
    FILEGROWTH=0%);
    Lastly, here is a copy of post about dealing with the NDF files where you want to add and drop them, which I have tested and it works... You should perform your own test as well.
    Thanks for the post
    1. You cannot put the Tempdb in Single user mode, which is logical since it is a system database or sorts
    2. The Restarting of your SQL Server instance prior to the execution of the REMOVE FILE command is essential
    3. Here is my post from a TEST where I had added an NDF file..
    Warning the TempDEV_2 file declaration got lost somehow in this process and the system thinks it is still there, which it is not.. So be careful and test your syntax on test server instance before you do what you need on a production server..
    — my syntax
    use tempdb
    go
    sp_helpfile
    ALTER DATABASE [tempdb] ADD FILE ( NAME = N’tempdev_4′, FILENAME = N’V:\Instance 7\tempdb_4.ndf’, SIZE = 100MB, FILEGROWTH = 0% ) TO FILEGROUP [PRIMARY];
    GO
    DBCC SHRINKFILE (N’tempdev_4′ , 0) –shrink to 000 MB
    GO
    ALTER DATABASE [tempdb] MODIFY FILE ( NAME = N’tempdev_4′, SIZE = 0KB, FILEGROWTH = 0% );
    GO
    — The SQL Server Instance MAY have to be Restarted to clear all system usage pointers into the Tempdb database
    — before this command can be performed
    ALTER DATABASE [tempdb] REMOVE FILE [tempdev_4];
    GO
    sp_helpfile
    [email protected]
    end…
    FHankFreeman

  • How to perform merge operation using Data services designer?

    I am new here and new to Data Services Desinger as well.
    And currently, I want to do a merge operation using query transform or table comparison transform. But sadly, neither one of them is giving me what I want.
    So, wonder if you could help clarify if either one of them could achieve MERGE operation between and source and target tables?
    if positive, then how?
    PS:
    by MERGE, i mean, if data exists in target table, then only do update, else, do insert. same with the standard MERGE operation of oracle.
    If you need any more info, let me know!
    Thanks in advance.

    You can do this.
    You don't need the Tabe_Comparison transform actually.
    Just query the data you need and output the flow from your query to your target table.
    Then, you'll have to check the "Auto correct load" option: this will insert new lines and updates old ones. One checked, you can ckeck the "Auto correct load" checkbox.
    By default, BODS will know a line already exists based uppon the primary key columns of your target table. If you want to change the columns used to determine if a line should be inserted or updated, use the "Use input key" checkbox (and define some PK column in your query).
    Hope this helps
    Guillaume

  • Can I perform the "control  F3" function with my magic mouse?

    If I press "control + F3" all of my open Safari windows pop up in an orgainzed fashion showing each page complete and seperate in a smaller form.  I want to know if I can perform this function using my magic mouse, not trackpad.
    I know that if I double tap my mouse that the windows will do a similar alignment, but it is not the same.  If I double tap then they are kind of made smaller but placed on top of each other.  I want them seperated completely like they are when I press "control + F3." 
    Any help with this?  Thanks.

    https://discussions.apple.com/thread/3194480?start=0&tstart=0

  • Why I can't sync firefox after using "restart with Addons disabled"? Why It's showing account not found?

    I'm using firefox sync with multiple desktop and laptop, even with Linux and windows environments since long, without any problem. Recently, I've used "Restart with addons disabled" option. Since then I can't setup sync. It's showing account or usename not matching!!! When I've tried to reset the password then It's showing account not found!!! But I've checked several times about username and password. Interesting on my laptop Firefox sync works perfectly, without any issue.
    I really need to solve this issue ASAP. I really , really want to continue using Firfox.
    Please help. Thanks in advance.

    Is there still a name and password and Sync key saved in the Password Manager?
    You can find the sync account password and the sync (recovery) key in the password manager on computers where a sync account with a specific e-mail address has been set up.
    *Firefox/Tools > Security: Passwords: "Saved Passwords" > "Show Passwords"
    Look for:
    * chrome://weave (Mozilla Services Password)
    * chrome://weave (Mozilla Services Encryption Passphrase)
    You can try to remove all services.sync lines from the prefs.js file in the Firefox profile folder and possibly delete or rename the Weave folder.
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

  • Accessing External List that uses BCS with CAML Query

    Hi,
    I have an external list that uses BCS to sql server. I can view the list with  Lists.asmx web service GetLlistItems. However, I get an parameter error when trying to add to the list with UpdateListItems. I will be changing over sharepoint lists to sql
    tables using BCS to connect to them and I need it to be seamless to clients that do CRUD operations using CAML. Are there any instructions on creating such an external list that maintains compatibility with ordinary sharepoint lists?

    CRUD options are fine.
    Here's what I've done.
    Created ECT.
    Created Read list & read item options.
    Set a limit for 200 items (for testing purposes only)
    Created external list based upon ECT created above.
    Opened external list in web browser and I'm able to open, edit & add items without issue.
    What I'd like is to have a simple HTML type form above the list (like in a Content Editor web part with a few text boxes and a 'search' button.  I've tried the link below but it either crashes Sharepoint Designer when I'm defining the parameters or
    if it works there the button doesn't work.
    http://arsalkhatri.wordpress.com/2012/01/07/external-list-with-bcs-search-filters-finders/

Maybe you are looking for

  • Can't look at pictures in full screen mode?

    I have an iPod touch 5th generation 32GB model. It is fairly new, only almost one year old. I have kept it in mint condition. The problem is, if I take a picture with either the front or rear camera, it will appear when I am looking at all of my phot

  • Error when deletting internal table

    Hi to all,    I have small requirement. Am getting runtime error , when am deleting internal table when that internal table will have only one record. how i can solve this problem. Give me some clues.

  • WITH clause in a stored procedure

    Hi, i have the following code for a stored procedure: create or replace PROCEDURE DISP_ORDER ( param1 IN VARCHAR2 , param2 OUT Types.cursor_type ) AS BEGIN WITH itemall as (select * from rep_order) open param2 for select * from itemall; END DISP_ORDE

  • 2 iTunes accounts, unable to change what is used for "updates" on iPad.

    Sorry - this might sound confusing, but I'll try to explain. I have 2 iTunes account. My primary Canadian and a US account. The US account is only for those situations where I have to redeem a free promo code, etc. The problem I'm having is that for

  • Thunderbolt and Hdmi Dual Screen MACMINI problem

    Hi there, I have two screens, one connected via HDMI, and another via Thunderbolt, which goes into thru UA APOLLO audio interface's 2nd thunderbolt output, when my Mac Mini starts up it is fine, for around 5 minutes, but then the thunderbolt display