Forum Replies Created

Viewing 15 posts - 5,026 through 5,040 (of 7,164 total)

  • RE: How to store lots of data (1024 columns) for a particular reading

    From a normalization perspective you are justified in using either model. Use whichever model will provide the easiest path for your development and will meet your performance requirements. The view...

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

  • RE: would this be simpler with powershell?

    ##################################################################################

    $recLength = 100 # Dts.Variables("intRecLen")

    $inFile = "C:\inputfile.txt" # Dts.Variables("strSrcFileName")

    $outFile = "C:\outputfile.txt" # Dts.Variables("strSrcFile")

    ##################################################################################

    # delete existing file if it exists

    Remove-Item -Path $outFile -ErrorAction SilentlyContinue

    # iterate over input file and write padded...

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

  • RE: Pass SP an "Array" or .NET loop and multiple SP calls

    Impedance mismatch...there is no right answer. Do whatever is easiest for you to code and maintain, and performs well enough to meet your SLA.

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

  • RE: Execute permissions on extended stored procedures

    I would recommend you create a stored procedure that returns the data you want, sign it with a certificate so it can operate with elevated permissions and then grant your...

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

  • RE: Memory settings

    Please read this article and follow its recommendations for setting max memory.

    http://sqlserverperformance.wordpress.com/2009/10/29/suggested-max-memory-settings-for-sql-server-20052008/%5B/url%5D

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

  • RE: migrating ssis packages from 2005 to 2008

    How to: Upgrade Integration Services Packages Using the SSIS Package Upgrade Wizard

    You can also upgrade them by opening them in BIDS 2008 or Visual Studio 2008.

    If you have a ton...

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

  • RE: tools OSQL and BCP

    I am not sure about osql.exe as that tool has been deprecated since the release of SQL Server 2005 in favor of sqlcmd.exe. You can install bcp.exe and the Native...

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

  • RE: Using Microsoft Certificate Services to manage TDE encryption keys

    From here: http://technet.microsoft.com/en-us/library/ms189586.aspx

    - Transparent Data Encryption (TDE) must use a symmetric key called the database encryption key which is protected by either a certificate protected by the database master key...

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

  • RE: Implementing TDE with Centralized Manangement of Keys

    I had not, but i just looked it up and it appears it will handle the requirement you have to "centrally manage the keys". At least according to the brochure....

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

  • RE: cannot see 3 new columns on a table

    I am wondering if the person who originally granted the SELECT permission on that table explicitly specified the columns in their GRANT statement. This would explain why columns added to...

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

  • RE: Why bcp import a file out of order in SQL 2008?

    ulisseslourenco (11/1/2011)


    Hi guys

    There is an application in my company which imports files inside several tables on database. However when there are simultaneous files, a lot of them import registers out...

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

  • RE: How to add columns dynamically,.,..,.,

    blah...

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

  • RE: Script does not abend SQL Agent job

    Why the trap?

    foreach($HOSTNAME IN GET-CONTENT "C:\@\SQL_Scripts\DBA\SQL Server\PowerShell\Servers.txt")

    {

    $status=get-wmiobject win32_pingstatus -Filter "Address='$hostname' "

    if($status.statuscode -eq 0)

    {

    ...

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

  • RE: Identifying who took a database offline

    ALZDBA (11/1/2011)


    Just a way to import your default trace and query it... see attachment

    ( this one reports auto grow events ,should be peace of cake to have it filter detach...

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

  • RE: Question about stored procs, xp_cmdshell, and .NET applications

    Elliott Whitlow (11/2/2011)


    I would probably handle the starting of the job as a Service Broker task. It separates the initiator from the executor very cleanly. It also means...

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

Viewing 15 posts - 5,026 through 5,040 (of 7,164 total)