Forum Replies Created

Viewing 15 posts - 1,966 through 1,980 (of 7,168 total)

  • RE: Splitting a Column in a table keeping reference column

    That will get you rows. You'll also need a Cross-tab to bring it back as columns:

    WITH cte ( ID, Name )

    ...

  • RE: SQL 2005 ALERTS Not Working for non-logged events

    These are the English messages that get logged automatically.

    SELECT *

    FROM sys.messages

    WHERE language_id = 1033

    AND (

    ...

  • RE: Run SSIS package. Works in BIDS, not on server.

    The info you provided about bitness sounds OK.

    From the error I am wondering about the existence of the destination Excel file. Does it exist in the prod environment at...

  • RE: How to pass a response to a .exe called by PoSh

    I think that is up to the program being called not PowerShell. If the program wants to accept input interactively and does not provide an input parameter for the information...

  • RE: How to set limited access to certain database tables?

    They will only be able to retrieve data from tables to which you grant them SELECT permissions.

    If you are asking if there is a way to allow their database user...

  • RE: Sql server Isolation levels

    As was stated READ COMMITTED is the default iso level and the default iso level cannot be changed to something else. Once connected anyone can explicitly change the iso level...

  • RE: Transaction Log Backup

    That looks familiar 😉

    If you're happy I say send it to prod!

  • RE: Auto access without sysadmin

    I like option 2 and that can be achieved dyanmically using a DDL TRIGGER such that every time a database is created a new Database User is add for the...

  • RE: INCLUDE on primary key

    A unique index where all key columns are non-null will achieve effectively the same thing as having a nonclustered PK on those same key columns plus you can add your...

  • RE: Split VLDB into Multiple data files

    Agreed if you only have one drive. I got the impression more drives were available or were being introduced.

  • RE: Unzip error through Excute process task

    OK. I should have confirmed that from the start. My bad.

    Get a command line working first, then move over to configure the Execute Process Task.

  • RE: Passing a variable to a table

    andrew 82282 (2/13/2013)


    Hi All

    I'm importing a number of tables with SSIS. I have a variable Filename used to select each individual file.

    I want to copy the value of this variable...

  • RE: buld insert question

    You're welcome. Thanks for the feedback.

  • RE: Unzip error through Excute process task

    You said in the original post:

    I tried to go onto the Location of Zipfile and tried unzipping it manually and it all works good.

    Was that just double-clicking on the file...

  • RE: Low disk space alert

    Get-WMIObject Win32_Volume -Computer COMPUTERNAME | Select-Object -Property Volume,Capacity,FreeSpace,Name,@{Name="FreeSpace(GB)";Expression={"{0:N1}" -f($_.FreeSpace/1gb)}},@{Name="Capacity(GB)";Expression={"{0:N1}" -f($_.Capacity/1gb)}},@{Name="freespace(%)";Expression={"{0:N1}" -f(($_.FreeSpace/$_.Capacity)*100)}}

    You changed COMPUTERNAME in the command line, right? Namespace is not explicitly set (should be using root\cimv2 under the covers...

Viewing 15 posts - 1,966 through 1,980 (of 7,168 total)