Forum Replies Created

Viewing 15 posts - 3,901 through 3,915 (of 7,164 total)

  • RE: Advice on learning vb.net script

    Lynn Pettis (6/1/2012)


    opc.three (6/1/2012)


    Lynn Pettis (6/1/2012)


    opc.three (6/1/2012)


    Nothing against VB.net (I used to develop lots of VB6 and learned VB.net before I learned C#) but C# has earned a dominant position...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Advice on learning vb.net script

    Lynn Pettis (6/1/2012)


    opc.three (6/1/2012)


    Nothing against VB.net (I used to develop lots of VB6 and learned VB.net before I learned C#) but C# has earned a dominant position in terms of...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Server Agent - who ran that job?

    pveilleux (5/31/2012)


    Hello, all,

    In digging around on one of our servers, I found what appears to be someone logging in as the SQL Server/Agent service account and running jobs. I'm...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Advice on learning vb.net script

    Nothing against VB.net (I used to develop lots of VB6 and learned VB.net before I learned C#) but C# has earned a dominant position in terms of the amount of...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Better Memory Utilization needed

    GilaMonster (6/1/2012)


    CPSPR (6/1/2012)


    Homework FTW (I think it's time I invested in an tablet)

    I suggest reading the entire book (not because I worked on it, it's just a good book...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Better Memory Utilization needed

    Well i guess in this case it wont matter coz the entire Db can be hosted in memory. I wonder if it would be easier to simply use an in...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: run job from the last inserted record

    Never had this issue so just brainstorming here. You could redirect failed rows to an error file, error in that they failed to load due to the network error not...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Foreach vs set for Database mail stored proc. Is it possible to send many messages with 1 statement?

    Jayanth_Kurup (6/1/2012)


    Have u considered using service borker...

    Why would one want to re-invent the wheel? Database Mail is built atop Service Broker.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Better Memory Utilization needed

    Jayanth_Kurup (6/1/2012)


    You cud monitor the counters for buffer cache hit ratio and page life expectancy , also you should keep and eye on your recompiles and complies per sec ....

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Foreach vs set for Database mail stored proc. Is it possible to send many messages with 1 statement?

    Loops internally but no cursor:

    DECLARE @sql NVARCHAR(MAX) = N'';

    DECLARE @priority VARCHAR(20)= '1=Critical';

    SELECT @sql = @sql + 'EXEC msdb.dbo.sp_send_dbmail

    @profile_name = ''db mail'',

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Better Memory Utilization needed

    No way around it. Nice post but you asked for an ocean of information. Buying a tablet last year increased my casual and technical reading bandwidth tenfold.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Better Memory Utilization needed

    Chapter 4 > Troubleshooting SQL Server: A Guide for the Accidental DBA[/url]

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SProc Structure - Encapsulate into one procedure, or split out into separate sprocs?

    This article explains very clearly why to avoid the pattern:

    Multiple Execution Paths[/url]

    My opinion: split to separate, more granular procs targeted to one specific purpose each. If the article is too...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: import the data base from sql to oracle

    The free Microsoft SQL Server Migration Assistant (SSMA) makes it easy to migrate data from Oracle, Microsoft Access, MySQL, and Sybase to SQL Server. SSMA converts the database objects to...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Importing Unstructured Flat File Data with Header, Detail and Trailer

    Points for showing your work so far!

    I would urge you to look into the Conditional Split Transformation for SSIS. Also, I think tokenize is spelled with a z.

    If you...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 3,901 through 3,915 (of 7,164 total)