Forum Replies Created

Viewing 15 posts - 16 through 30 (of 126 total)

  • RE: Importing data from a Oracle view

    Many thanks for your response, but I know that it should be possible; My issue is that they are not working and I wanted to know from someone who has...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: a question about sys.server_principals and sys.server_permissions

    Akayisi (2/18/2014)


    Hi guys I am testing users' rights in sql server. However; I would like to add another column to sys.server_permissions which describes the name of endpoints. For instance;

    I connect...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Database level auditing in 2008r2 standard edition

    With Standard Edition you are limited with your choices but, you could run a server-side trace for just their ntusername. That would span across all databases or just a...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Need help in SP

    Looks like you need an OUTPUT parameter

    CREATE PROC USP_first @id INT OUTPUT

    AS

    DECLARE @date AS DATETIME

    SET @date = GETDATE()

    SET...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Sql Agent service

    Sounds like it could be permissions based. Are you a sysadmin on the SQL server?

    Either way;check the sql log files and/or event logs for the reason that the service...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: CPU considerations for multiple instances

    You could look into utilising resource governor (built into SQL) for this very situation

    🙂

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: SQL Instance Memory Allocation

    The DR is not for the same server - It's a warm standby of another server but always worth mentioning for others reading the post. It wouldn't really meet the...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: SQL Instance Memory Allocation

    Thanks for the response Brandie - The named instance is to be used as a warm standby for DR, so there is no real performance concerns as the default instance...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: select statement blocking update statement

    chewychewy (8/14/2013)


    Hi Guys,

    Understand that by default, SELECT statement on a table will block update statement on the table.

    By setting READ_COMMITTED_SNAPSHOT, update statement (writer) will not block select statement (reader) as...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Can we assign port 1433 to a named instance

    mohan.bndr (8/14/2013)


    Can we assign port 1433 to a named instance ? I know that these 1433 as port number to default instance. Please clarify, Can we allocate port 1433 to...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: left join question

    Sean Lange (8/16/2013)


    curious_sqldba (8/16/2013)


    select a.col1,a.col2

    from Table1 A

    left join Table2 B

    select a.col1,a.col2

    from Table1 A

    Would these two queries return same result set?

    They would if either of the tables has only 1 row....

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Log LDF file

    I would also look at securing your database with the relevant lowest possible priviledge. Having correct security from the outset can reduce the chances that someone will delete data directly...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: SQL Native Client - How can you tell it's being utilised as a connection?

    Thanks for the response

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Incorrect length being returned for FLOAT datatype field

    If you are using this column to hold financial data I would not recommend using float, as it is an approximate data type. Use decimal instead.

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Running Dynamic SQL

    Hi Gail - Hope you are well.

    I spoke to you at SQL in the City In London a week or so ago (i was the one with the questions...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

Viewing 15 posts - 16 through 30 (of 126 total)