Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Geocode Addresses in T-SQL

    Hi David,

    Thank you so much for taking all this trouble to help me.

    Works really good!!

    Regards!

  • RE: Geocode Addresses in T-SQL

    Do you have an example how to do this with SQL CLR?

  • RE: Geocode Addresses in T-SQL

    I really loved the article!

    So I tried the same with the NS api (www.ns.nl/api), but when I put the url in firefox, I get results, but within my stored procedure...

  • RE: PushD commands from MS

    Yes, thnx for the tip, this works.

    DECLARE @DeleteDate DATETIME = DATEADD(dd,-2,GETDATE());

    DECLARE @path VARCHAR(256);

    SET @path = '\\myuncloc\BackupDumps\';

    print @DeleteDate

    EXEC master.sys.xp_delete_file 0,@path,'BAK',@DeleteDate,0;

    But anyone any idea why the other code doesn't work?

  • RE: select rows into colums

    Dear old hand,

    Thank you for your response! What I actually want is to calculatie the number of items the customer has to buy:

    itemBalk1Stof1Stof2Stof3Stof4Stof5Stof6Stof7Stof8

    number of items needed46244116124

    length of each item (mm)5138,15147820002698,241479,36335080013331473

    available...

  • RE: Guidance on table valued types.

    Hi,

    Did you check the query plan? I'm quessing the new index is not being used. Can you give an example on the query you are using on that table?

    Regards!

  • RE: select rows into colums

    Dear SSCrazy,

    I am very impressed by your solution, so i have been looking at it for quite a bit.

    What i was wondering (but can't figure it out), if you insert...

  • RE: select rows into colums

    Wow SSCrazy,

    Thanks for your quick answer, this is exactly what i need!!

    Thnx a lot!

Viewing 8 posts - 1 through 8 (of 8 total)