Forum Replies Created

Viewing 15 posts - 2,251 through 2,265 (of 7,164 total)

  • RE: Creating XSD from XML file in SSIS

    Duplicate post. Direct replies here:

    http://www.sqlservercentral.com/Forums/Topic1411923-147-1.aspx

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

  • RE: Generating XSD from XML FILE in SSIS

    The error message seems pretty clear and even tells you where in the file the problem resides. Your XML file is malformed due to it containing an invalid character.

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

  • RE: Running a batch job in a sql stored proc

    andy.westgate (1/25/2013)


    My question would be, can I just execute the batch job from with in a stored proc or would I run into the same permissions issues?

    You could but having...

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

  • RE: Today's Random Word!

    lakh

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

  • RE: Max memory settings

    I doubt anyone would argue against setting it but it's probably of limited value if you have multiple GBs of available RAM. It might be useful if your Express instances...

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

  • RE: Is there any way to create the database using stored procedure which includes design

    In its simplest form:

    CREATE PROC dbo.createnewdb (@dbname SYSNAME)

    AS

    BEGIN

    DECLARE @sql NVARCHAR(MAX) = N'CREATE DATABASE ' + QUOTENAME(@dbname);

    EXEC(@sql);

    END

    GO

    EXEC dbo.createnewdb N'newdb';

    There are too many...

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

  • RE: SQLCMD question (extract to csv file)

    After installing the command line tools you linked to, a simple batch file or PowerShell script that accepts two parameters and calls bcp.exe to execute a stored procedure should suffice.

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

  • RE: Is there any way to create the database using stored procedure which includes design

    Are you asking whether you should design your database to only allow accessing data via stored procedures? Or something to do with having a stored procedure that someone could execute...

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

  • RE: To configure the user name and login name for a database

    I have another database 'emp' in which i have used empdbo as login name.

    So when i login with 'empdbo', i'm able to access 'emptest' db. This should not be allowed.

    How...

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

  • RE: Consistency Check on 3TB database

    If you're concerned or are already bumping into issues getting consistency checks to complete on a 3TB database you can consider splitting the workload:

    CHECKDB From Every Angle: Consistency Checking Options...

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

  • RE: WHAT IS WHERE!!!

    Angelindiego (1/24/2013)


    You are on the money!! We have lowside and highside servers. We have database code and app code. We have modules for db/app. He wants...

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

  • RE: How do I remove zombie Business Intelligence Development Studio installed by SQL Server Express?

    I am pretty sure I have previously applied Developer Edition on top of Express and been successful. I know I have applied Enterprise on top of Standard with no issues....

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

  • RE: Invoking SSIS Package through a Web App

    Hasitha Amarasena (1/24/2013)


    I already created the package and it is invokable through the code. Also the code for the option 1 is in place. During the testing I learnt that...

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

  • RE: WHAT IS WHERE!!!

    A deployment matrix could mean many different things and even when in the same context it could mean different things to different people. To my knowledge it's not a standard...

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

  • RE: autogrowth of db files

    It will create fragmentation as well but the severity can be greatly reduced if your autogrow settings are sensibly set. The serious problems with physical fragmentation arrive when you have...

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

Viewing 15 posts - 2,251 through 2,265 (of 7,164 total)