Forum Replies Created

Viewing 15 posts - 16 through 30 (of 198 total)

  • RE: need Help in select query

    Hi Guys,

    If the City's are grouped (which is how I am reading this) say by Region - something like that. Wouldn't it be as easy to use two key columns...

  • RE: PK Zip

    Did I miss the Sequel Server TSQL bit of this thread?

    Have fun

  • RE: Dynamic Query Execution Using sp_executeSQL

    Hi Guys,

    I think you will find the reason for the dynamic sql error was that @usr_id is numeric. You will need to CAST / CONVERT it before adding it...

  • RE: help with procedure

    Hi,

    quote You want all the users to be presented vertically?

    Yeah, only users associated with those specific EventIDs and FieldIDs...

  • RE: help with procedure

    Are you looking at throwing 0 - n EventIDs and 0 - n FieldIDs at this one query and returning the data the same as in Carls last post e.g:

    1 Item          ...

  • RE: selecting result of a dynamic sql statemnt into a variable

    Hi Sahana,

    In your original post you asked about selecting the result of a dynamic query into a variable. Here is an example using sp_executesql

    DECLARE @no1 INT

    SET @SQL =...

  • RE: Passing parameter to T-SQL script.

    Hi,

    It should be easy to create a stored procedure that accepts a parameter from your script.

    If you post the full script, i'm sure we can point you in the...

  • RE: Need help with tricky SQL SELECT problem

    You could simplify:-

    SELECT  TOP 1 *

    FROM Contact C

    INNER JOIN ContactPoint CP ON C.ContactID = CP.ContactPointID

    But, just out of interest - why would you want to only return 1 row when...

  • RE: Array as parameter to Stored procedure

    That will kill this thread - it will take us mere mortals two weeks to decipher it

  • RE: Resetting Identity Seed/PK''''s

    Might seem a silly question but - you go live and you have your neatly ordered, no gapped PK's.

    Say you have PK's 1...

  • RE: Dynamic Parameters for Stored Procedures

    Hi Gordon,

    Two threads with similar topics.....

    I have achieved the same thing on numerous occaisions using a sproc I found on here many moons ago. Just create the sproc, give it...

  • RE: Array as parameter to Stored procedure

    Hi,

    Two threads with very similar topics......

    You can also use a string with delimiters. I found this on here about a year ago and have used it for allsorts ever since......

    Just...

  • RE: Double quotes inside double quotes

    Hi Delpiero,

    Are you sure your errors aren't coming from not cast / converting @Prod_ID? You shouldn't have too many problems adding double quotes...

  • RE: Encrypt/Decrypt FUncionality

    Hi David,

    Yes there are limitations and 'quirks' involved with sequels encryption functionality. I haven't yet found a way to decrypt......

    Rather than maintaining two different procedures, would it not be easier...

  • RE: Encrypt/Decrypt FUncionality

    Forgot to mention - these are  "undocumented"  features. Use at your own risk.......

Viewing 15 posts - 16 through 30 (of 198 total)