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 SkipVought 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. MonsterBuck

    Update trigger

    You are forgeting to join the inserted table to your profile table.
  2. MonsterBuck

    SQL statement help on poorly designed database

    I thought of the Union statement... Something like this: select num, decode from tblimpacts inner join tblImpactDecode on code = 'a' where a = 1 and num = 1 union select num, decode from tblimpacts inner join tblImpactDecode on code = 'b' where b = 1 and num = 1 union select num...
  3. MonsterBuck

    help needed w/difficult sql query

    It appears by your data, that proj is required in both tables and if something in the other 5 columns matches, then you want to update the 3rd table. So can you do something like: table1 INNER JOIN table2 ON 1.proj = 2.proj WHERE (1.fnd = 1.fnd OR 1.fnct = 2.fnct OR 1.obj = 2.obj...
  4. MonsterBuck

    Error in creating Cursor

    your problem is this line: PRINT @OdorID + @Odor; @odorid is an int and @odor is a character So I am guessing you have a number and you are trying to add 'warm' to it Here is an example of your error... print 1 + 'warm' Server: Msg 245, Level 16, State 1, Line 1 Syntax error converting the...
  5. MonsterBuck

    What does this work for the old syntax, but not the new

    Think of the syntax this way for outer joins... whatever you put in the on clause will join the two tables. Then you have your where clause. That will filter the results of the joined tables. So on a left outer join where t2.name = 'dave' is in the where clause the left outer join gives...
  6. MonsterBuck

    Need help with sp_executesql and the Keyword IN ()

    The problem is that I don't know how many values are in the comma delimited variable. That is why I was hoping that there was some way to use the IN keyword and sp_execute without having to break up the comma delimited variable. I like the efficiency of sp_executesql.
  7. MonsterBuck

    Need help with sp_executesql and the Keyword IN ()

    Is there any advantage of that code verses this code? set @list = '1,2,3,4' exec ('select * from deleteme where i in ('+@list+')')
  8. MonsterBuck

    How can I list only My Own Stored procs and not all procs?

    I think this is what you are looking for (sql server 2000): select name, status from sysobjects where type = 'P' and status >= 0
  9. MonsterBuck

    Need help with sp_executesql and the Keyword IN ()

    So are you saying that there is no way you can use sp_executesql and in the where clause use the keyword IN ()? I have a solution that is working. I just like the idea of using sp_executesql and was hoping there was a way to use it.
  10. MonsterBuck

    Need help with sp_executesql and the Keyword IN ()

    I can use the Execute command and the keyword IN() and it works, but when I try and covert the code to sp_executesql I get an error message Below is just some sample code to set up a test case senerio. Does anybody know how to use sp_executesql and the keyword IN()? Is this possible...

Part and Inventory Search

Back
Top