Forum Replies Created

Viewing 15 posts - 421 through 435 (of 2,038 total)

  • RE: CLR TVF-: how can we send the optinal parameter

    Paul White (7/9/2009)


    Florian Reischl (7/9/2009)


    Nope. I meant optional parameters with default values like often done in C++ or VB6 (don't know if VB.NET supports this feature any more). The "params"...

  • RE: Are the posted questions getting worse?

    Paul White (7/9/2009)


    Florian Reischl (7/9/2009)


    Bruce W Cassidy (7/9/2009)


    Paul White (7/9/2009)


    Ah - so you are a fan of anti-verbositization then :w00t:

    [font="Verdana"]If only mere words could express my floccinaucinihilipilification of verbiage...[/font]

    :unsure:

    floccinaucinihilipilification

    [answer]

    Thanks

    [/answer]

    [verbositization]

    ThankyouPaulfouryourlinkItisalwaysnicetolearnnewthingsaboutEnglishlanguage

    [/verbositization]

    Anyone else...

  • RE: Are the posted questions getting worse?

    Bruce W Cassidy (7/9/2009)


    Paul White (7/9/2009)


    Ah - so you are a fan of anti-verbositization then :w00t:

    [font="Verdana"]If only mere words could express my floccinaucinihilipilification of verbiage...[/font]

    :unsure:

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (7/9/2009)


    Crap. Why do we still bother sending our kids to an expensive German School here in Cape Town when they really don't need to learn German...

  • RE: Are the posted questions getting worse?

    Bruce W Cassidy (7/9/2009)


    [font="Verdana"]My personal motto is to never use a large word where a diminutive one will do. :-P[/font]

    So you will never work in a German government. They...

  • RE: Are the posted questions getting worse?

    Paul White (7/9/2009)


    Jan Van der Eecken (7/9/2009)


    10 out of 10 for this translation goes to Paul. Or was it Google?:-)

    Quite clearly Google 😎

    Mein Deutsch ist sehr grundlegende. :unsure:

    Very well! Just...

  • RE: CLR TVF-: how can we send the optinal parameter

    Hi Paul!

    Paul White (7/9/2009)


    Florian Reischl (7/9/2009)


    I'm really happy that C# does not give the possibility to implement optional parameters.

    So...you mean optional paramaters like Console.WriteLine("{0} posted {1} {2}.", "Flo", "yesterday", "afternoon");...

  • RE: Pass Database Variable Names in SQL Command

    Sorry, I recognized that this is the "SSIS Forum" after I posted my answer...

    Since I'm primary a .NET developer I would use wild-cards within the scripts and a Script Task...

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (7/9/2009)


    Florian Reischl (7/9/2009)


    Lynn Pettis (7/9/2009)


    Florian Reischl (7/9/2009)


    Augeninnendruckmessgeräteprüfungsgesetzverpflichtungsformularvordrucklayouterstellungsassistent

    Care to provide a translation?

    I feared this question... it's very hard kind of officialese.

    @chad-2: Right direction since you ordered the...

  • RE: How to find Total Number of Tables in All the databases on a Server?

    You can use sp_MSForeachdb and a temp table:

    CREATE TABLE #t (DbName NVARCHAR(128), TableCount INT)

    EXECUTE sp_MSforeachdb 'INSERT INTO #t SELECT ''?'', COUNT(*) FROM [?].sys.tables'

    SELECT * FROM #t

    DROP TABLE #t

  • RE: SET Commands

    Have a look to sys.dm_exec_sessions:

    SELECT * FROM sys.dm_exec_sessions WHERE session_id = @@SPID

  • RE: Pass Database Variable Names in SQL Command

    You can use SQLCMD mode (Menu -> Query -> SQLCMD Mode) like this:

    :setvar DatabaseName "Sandbox"

    SELECT COUNT(*) FROM [$(DatabaseName)].dbo.Tally

    Edit: Dang! Sorry didn't notice the SSIS forum. Sorry!

  • RE: IE 8 and Office Live Workspace

    Thanks for your responses.

    At work I use IE8 on XP x32, without any problems using SharePoint or OfficeLive there. In my case it just don't work on a x64 system.

  • RE: charindex() and substring() functions

    Not smaller but maybe a little bit more simple to maintain:

    ; WITH cte (name, fname) AS

    (

    SELECT

    name,

    ...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (7/9/2009)


    Florian Reischl (7/9/2009)


    Augeninnendruckmessgeräteprüfungsgesetzverpflichtungsformularvordrucklayouterstellungsassistent

    Care to provide a translation?

    I feared this question... it's very hard kind of officialese.

    @chad-2: Right direction since you ordered the pizza.

    I did my best to translate...

Viewing 15 posts - 421 through 435 (of 2,038 total)