Forum Replies Created

Viewing 15 posts - 2,551 through 2,565 (of 2,566 total)

  • RE: Output formatting and for loop issue

    Gary Varga (4/21/2016)


    frederico_fonseca (4/21/2016)


    did either of you bother reading my reply? if you don't supply the server to the cmdlet Get-WmiObject it will only do the current server

    I did bother....

  • RE: Output formatting and for loop issue

    did either of you bother reading my reply? if you don't supply the server to the cmdlet Get-WmiObject it will only do the current server

  • RE: Output formatting and for loop issue

    you were missing the -computer parameter

    for powershell v3

    Get-WmiObject Win32_LogicalDisk -computer (Get-Content c:\temp\computers.txt)|Select PSComputerName,DeviceID,VolumeName,Drive,DriveType,Size,FreeSpace|Export-Csv -NoTypeInformation -Delimiter "`t" -path c:\temp\alist.txt

    the command above will output the values with double quotes -...

  • RE: Building BI from Scratch!

    Gee.... this last post would warrant a holy war and a thread on its own.

    Regarding the original post.

    Before deciding on a ETL strategy you need to focus on what are...

  • RE: getting killed on new server

    is maxdop set to 0? this may cause some quite misbehaving queries to show up now. this should be set neither too high nor too low if your machine has...

  • RE: Loading files in parallel

    have a got at it and come back with any issues.

    But as I said SSIS really isn't the best option for parallel processing like this.

    in any case here is another...

  • RE: 0xC000F427 When executing SSIS package in command line

    Normally means that you do not have Integration Services installed.

    Run the SQL Server features discovery report to see if it has been installed both on your PC and on the...

  • RE: Setup a linked server from SQL 64-bit to 32-bit ODBC database

    Persavise does have a 64bit client - can't you use it?

    Regarding the 32bit execution of SSIS packages you can do it - probably you will need to execute it...

  • RE: Loading files in parallel

    you can do it - although I would not use SSIS for the controlling of the executiong of the loading - for this I would consider instead a C# or...

  • RE: Import a .xls file to load into SQL database Via SSIS package

    mylenechalut (4/16/2016)


    Unfortunatly, I work for the federal government. We cannot use whatever software of version we want here 🙁

    That does not invalidate the fact that you should use it...

  • RE: Import a .xls file to load into SQL database Via SSIS package

    First off you should look into using the Microsoft ACE (Microsoft Access Database Engine 2010 (or 2013) Redistributable) for reading the excel files as it does allow for a...

  • RE: SSIS Package wont fail

    are you executing the package on the file system or on Sql Server? and if on Sql Server are you setting it to run asynchronously or synchronously?

    if running asynchronously...

  • RE: Best Practices - SSIS location

    In my opinion it all depends on how big your SSIS process is going to be and if the existing servers have a window where the SSIS jobs can run...

  • RE: What's a Toaster?

    These would be my toasters

    Agent Ransack - searching for files is a must.

    Vim ... (unix guy here so a must)

    7zip

  • RE: Trim Non-Alpha characters from string

    works only partially - does not take in consideration that fact that some countries do have Accented alphas so the code as is removes them.

    Select dbo.fnTrimNonAlphaCharacters('âáÉéôô') will just return an...

Viewing 15 posts - 2,551 through 2,565 (of 2,566 total)