How can I get this query to work?

HI
SELECT  TOP 200  [word] ,COUNT(word) AS count
          FROM [COMMENT_WORDS]
          where word NOT in (SELECT wordText FROM word)
            GROUP BY word
            ORDER BY COUNT desc
gives me this error:
Msg 468, Level 16, State 9, Line 1
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
please help

Thanks I changed the count name but I am still getting
Msg 468, Level 16, State 9, Line 1
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
I also went into the word database and ran
    ALTER DATABASE [word] COLLATE
    Latin1_General_CI_AS
and now both databases have the same colaltion but I still get the error:
Msg 468, Level 16, State 9, Line 1
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
I am using ms sql 2005

Similar Messages

  • My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • How can I get this thing to work without apple id? :(

    I've got Iphone 4s from my boss instead of my paycheck due to a bankrot. And he doesn't remember his apple id,password or e mail he used to activate Iphone.. How can I get this thing to work without it? :/

    You can't.
    Sounds like it he gave you a stolen iPhone or at least a worthless one.

  • How can I get this program to work -- Adobe Send or Adobe SendNow

    How can I get this program to work?  I have used Adobe SendNow successfully for several years and am on automatic renewal and getting nothing but frustration for my money!  I have been unsuccessful at sending anything in the past several months.  Today while working on a deadline and many unsuccessful attempts to upload files, I signed up for a free trial at a competitor in order to get my files sent.  Want a refund  -- or better yet, keep my money and get it to work right again.

    You can't.
    Sounds like it he gave you a stolen iPhone or at least a worthless one.

  • How can I get this JApplet to work?

    Okay, so I have a website now...
    it is called www.nothingbutinfo.info.
    I would like to put a japplet onto a page... because HTML is annoying and I know 1000000 times more about java.
    So... this is the code I have been able to find...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Untitled</title>
    </head>
    <body bgcolor="#ffffff">
    <div style="z-index: 4000; position: absolute; margin: 1px; width: 0px; height: 0px; top: 0px; left: 0px" id="html0" name="html0">
    <applet codebase="Applets" code="TestApplet.class" width="400" height="300">
    <param name="_cx" value="26" />
    <param name="_cy" value="26" />
    Sorry, no dice ... this requires a Java-enabled browser.</applet> </div></body>
    </html>Towards the end is the applet part.
    It does not work.
    This is where I have my files stored..
    www.nothingbutinfo.info/public_html/Applets/
    ...TestApplet.class,TestApplet.java,TestApplet$1.class,TestApplet$2.class
    What more do I need to do to get this started?
    Any help will be greatly appreciated.
    PS I looked at the tutorials, that is how I got here. Going there again won't do much.

    AwakenToThePain wrote:
    After that, what you wrote turned out to work.Glad you got the first applet problem sorted. I offer a tool for testing applets, Appleteer, for when your next applet problem crops up in (wait.. checks watch..) just a while.
    That 'first applet' and (bracketed) part is my way of saying "applet deployment is a PITA".
    I highly recommend you put the classes in a Jar and deploy the app. using [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp]. I also provide JaNeLA, for checking JWS based app. launches. ;-)
    Your comment about what Netbeans forces, amused me. I am running Ubuntu as my OS and when I recently changed over (from Win.) I tried to like Netbeans again - after having previously spurned it. I write a lot of SSCCEs, and the Shortest way to write them is to leave out a package statement. Since I could not see a way to get around NB insistence on packages (which is probably a good thing, in the long run), and was too lazy to remember to remove the package statement before posting examples, I put NB aside again, ..and added some Tools to the generic Ubuntu text editor (Gedit) to compile, run applets, and invoke Ant on build files.
    Don't get me wrong. IDEs like Netbeans, Eclipse, JCreator and the like are fine tools and make some things very easy (refactoring code, drag'n'drop GUI development..), but to do that well, they require that the programmer understands both the (Java) code being churned out, and the intricacies of the IDE. What IDEs offer is not something I need often enough, to bother dealing with their intricacies.

  • !instanceof - how can i get this logic to work...because it doesnt

    So I'm working with S Linked Lists and theres an add(E object) method that we are creating.
    So its supposed to first check-well at least at some point in the method- that the object being passed in is of the same type as my SLL. If its not im supposed to throw a new ClassCastException.
    I tried this at the beginning of the method:
    public void add(E obj) throws ClassCastException
             if(obj !instanceof Doctor) throw new ClassCastException();
             Doctor d = (Doctor)obj;
             int index = 0;
             MySLLNode<E> item = head;
             for(int i = 0; i<size(); i++) {
                  if (d.compareTo(item.getData()) < 0) {
                       super.add(index,obj);
                       size++;
                       break;
                  if (d.compareTo(item.getData()) == 0) {
                       super.add(index+1,obj);
                       size++;
                       break;
                  else {
                       index++;
                       item = item.next;
             addLast(obj);
             size++;
        }.....but im getting a couple of errors
    ./MySortedSLL.java:42: ')' expected
             if(obj !instanceof Doctor) throw new ClassCastException();
                   ^
    ./MySortedSLL.java:42: illegal start of expression
             if(obj !instanceof Doctor) throw new ClassCastException();
                     ^
    ./MySortedSLL.java:42: ';' expected
             if(obj !instanceof Doctor) throw new ClassCastException();
                                      ^So is there a better way to check that the object being passed in (which wants to be added to my SLL) is of compatable type...being that it is of type Doctor?
    Thanks in advance....

    Rather than
          if (f !instanceof Fubar) {
             System.out.println("Yeah!");
          }try
          if (!(f instanceof Fubar)) {
             System.out.println("Rah!");
          }

  • TS1702 My cars 2 app mate app is not working after upgrading from ipad to ipad 2...... synced.... uninstalled and re installed several times as well as wiped ne ipad out and re did the whole proccess several times. how can I get this app working?

    I have installed the cars 2 app mate on a ipad 2 from an ipad 1 synced with itunes account.. all is working except this app. After many times of un installing and re installing aswell as talking to apple tech suport this app is still not working.... its there it just has no function...... how can i get this installed and working, my grandson is autistic and uses this app many hours a day........ it is important for me to get this up and running again for him.......

    (1) So, I found a youtube video showing how to open up my iMac and replace a Disk drive. I opened it. I removed the disk drive. I opened the metal cover of the lid of the disk drive. It was clean and immaculate; so, it destroyed and debunked the dirty drive theory. But, just to make sure I sucked around the optical sensor with a vacuum and gently brushed it with a Q-tip.
    (2) I then watched a you tube video showing how the drive operated (it was a drive supplied with power outside an iMac with a transparent cover unlike the opaque metal cover that we have on our drives). My scientific curiosity started to wonder if somehow the mechanical part (of the electro-mechanical assembly) was locked or jammed. So, I started messing with the arms with the utmost care after watching the video to see if i could move them manually. Yes on some. The main arm that is linked with the drive motor was immovable. The rest I played with a little bit, took great notice in the start of the video to see how the arms looked before inserting a disk. I then put it all back together.
    It works now. My guess is that taking it out and then placing it back in along with the resetting options that others have done was the trick. I believe it is a possibility that the hard drive became locked mechanically in some strange manner after ejecting a DVD in conjunction with the uploading of the new OS. I believe the actual removal, reinstallation, and resetting of the drive put everything back into sync. My computer sits in a climate controlled dust free environment. I knew for a fact that this hard drive was OKAY.

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • My iPod Classic is seen by Windows but not by iTunes.  I have reset it, gone to disk mode and it won't show up in iTunes.  There appears to be music on it in a file called MUSICSAVE.  How can I get this to work with iTunes again?

    My iPod Classic is seen by Windows but not by iTunes.  I have reset it, gone to disk mode and it won't show up in iTunes.  There appears to be music on it in a file called MUSICSAVE.  How can I get this to work with iTunes again?

    1. Update iTunes to the latest version. Plug in your iPod. If iTunes still can't recognize it, then in iTunes in the top left corner click help> run diagnostics. On the box that comes up, check the last two things. Click next and it should identify your iPod.
    2. Click on your windows start menu. Type in "services". Click on it and when it pops up, on the bottom of it click on "standard". Now Scroll down to find "Apple Mobile Device" Right click it when you see it and click on "Start". When it has started, close iTunes and replug in your iPod and it should show up.
    3. Check the USB cable
    4 Verify that Apple Mobile Device Support is installed
    5. Restart the Apple Mobile Device Service and verify that the Apple Mobile Device USB Driver is installed.
    6. If you just want to add some photos, songs and movies from computer to your devices, you can use an iTunes alternative to do the job
    7. Check for third-party software conflicts.
    <Link Edited By Host>

  • Somehow my iTunes app has been put into the trash.  How can I get this and all of the stuff that was in it back to my Application folder?  I try to drag it out of trash, but it won't work.

    Somehow my iTunes app has been put into the trash.  How can I get this and all of the stuff that was in it back to my Application folder?  I try to drag it out of trash, but it won't work.

    Also, when I do try to drag it out of the Trash to put it back into Applications (on the Finder sidebar), it asks me to authenticate with the administration password.  I enter it, and then a window appears saying that I can't do that because I do not have permission to modify iTunes.  Please help.

  • In disk utility, it shows that my external hard drive is somehow unmounted and I can't access it in finder or repair it in Disk Utility. How can I get this working without losing my important data?

    In disk utility, it shows that my external hard drive is somehow unmounted and I can't access it in finder or repair it in Disk Utility. How can I get this working without losing my important data?
    Thank you!

    When you erased the disk did you select Mac OS Extended Journaled as the format option?

  • After copying a movie to the harddisk of my MacBook I wanted to also copy it to my iPad, but for this you first have to copy it to the library in iTunes, but this doesn't seem to be working. So how can I get this movie to the library ? And to the iPad ?

    After copying a movie to the harddisk of my MacBook I wanted to also copy it to my iPad, but for this you first have to copy it to the library in iTunes, but this doesn't seem to be working. So how can I get this movie to the library ? And to the iPad ?

    How is it not working?  And how are you doing it?  Drag the movie onto the iTunes icon on the Dock...  what happens?

  • I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    Oaky, at least we got that far.  Next step is to determine if all those "numbers" are really numbers.  Changing the format to "number" doesn't necessarily change the string to a number. The string has to be in the form of a number.  Some may appear to you and me as numbers but will not turn into "numbers" when you change the formatting from Text to Number. Unless you've manually formatted the cells to be right justified, one way to tell if it is text or a number is the justification. Text will be justified to the left, numbers will be justified to the right.
    Here are some that will remain as strings:
    +123
    123 with a space after it.
    .123

  • I have adobe CS 5.1 and recently (after an update) it is giving me an error (Could not save...because of a program error) every time I try to save my work as a PDF   Help how can I get this resolved??

    I have adobe CS 5.1 and recently (after an update) it is giving me an error (Could not save...because of a program error) every time I try to save my work as a PDF>  Help how can I get this resolved??

    Run the cleaner, reinstall.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    And don't bother with running any updates unless you really need them or they fix a critical issue relevant to your workflow.
    Mylenium

  • On the fifa 14 iTunes app it won't let me turn on device music, how can I get this to work?

    On the fifa 14 iTunes app it won't let me turn on device music, how can I get this to work?
    I have bought full access to it.

    1. Update iTunes to the latest version. Plug in your iPod. If iTunes still can't recognize it, then in iTunes in the top left corner click help> run diagnostics. On the box that comes up, check the last two things. Click next and it should identify your iPod.
    2. Click on your windows start menu. Type in "services". Click on it and when it pops up, on the bottom of it click on "standard". Now Scroll down to find "Apple Mobile Device" Right click it when you see it and click on "Start". When it has started, close iTunes and replug in your iPod and it should show up.
    3. Check the USB cable
    4 Verify that Apple Mobile Device Support is installed
    5. Restart the Apple Mobile Device Service and verify that the Apple Mobile Device USB Driver is installed.
    6. If you just want to add some photos, songs and movies from computer to your devices, you can use an iTunes alternative to do the job
    7. Check for third-party software conflicts.
    <Link Edited By Host>

Maybe you are looking for

  • Disabling a Check box

    In my BSP View am using two check box. I want to disable one check box when the other one gets checked and vice versa. Right now am doing with some logics and with server side events.I want to do this in the client side. In <b>Java script</b> how i c

  • Non Domain Computers Becoming Master Browser

    Hello, I am troubleshooting an issue with the master browser service when an external user connects his workgroup laptop to our domain network and wins the election. The network consists of a domain controller which has the following registry setting

  • Is direct po possible in classic scenario?

    hi , i am using classic scenario.so whenever i created a sc it creates a indirect po in the back end system.but i wanted to create a direct po in the backend system with out picking up the account assignment tab.so what can i do to get direct po in t

  • Replacing a cloudy grey with a blue sky.

    I have Photoshop Elements 5, and Windows XP Home operating system. I am trying to replace a grey sky with a blue sky. I have "the photoshop elements 5 book for digital photographers" by Scott Kelby. He describes on pages 301-302 the steps necessary t

  • Mail box location

    Can i create mail boxes on my mail.app that have a location on my idisk? whenever i create a mail box the location is always 'On My Mac' (ie local) and there aren't any other options.