Forum Replies Created

Viewing 15 posts - 4,606 through 4,620 (of 8,761 total)

  • RE: how to identify table that have been made on a temporary basis are not used

    ramezani583 21209 (9/9/2015)


    Hi all,

    In the Operating environment databases, may be made tables in the database on a temporary basis but they are still yet and they are not removed, how...

  • RE: Members of Database Role

    dan-572483 (9/8/2015)


    Is there a command that will list the user members of a Database Role, as opposed to right-clicking the Database Role/Properties, which doesn't allow you to sort the members...

  • RE: Server level trigger to log activity and rollback after logging information

    shamshad.ali (9/8/2015)


    I use following trigger to stop user "smith" if he try to connect through SSMS to My Server:

    create TRIGGER [trg_connection_MyServer]

    ON ALL SERVER WITH EXECUTE AS 'Smith'

    FOR LOGON

    AS

    BEGIN

    IF ORIGINAL_LOGIN()= 'Smith'...

  • RE: The package execution failed DBCC CheckDB

    Run DBCC CheckDB ('[db_name]') WITH NO_INFOMSGS, ALL_ERRORMSGS and post the full unedited output.

    😎

    BTW, how much free disk space does the server have?

  • RE: Can we query a parent child hierarchy in a cube from any Level?

    ilovedata (9/1/2015)


    I am using an Adventure works Cube with DimEmployee dimension. When I look at the data through browser, I can see as below.

    -->All

    ---->Ken, Sanchez

    ------->Laura, Norman

    ------->Debbie, Borah

    ---------->Shawn, Mike

    ---------->Lacey, Rhonda

    Now I...

  • RE: Multiple SQL instance memory issue

    Quick questions, why use Lock Pages in Memory? Is there anything else running on the server, i.e. SSAS, SSIS or SSRS?

    😎

    Have a look at these two articles

    - Lock...

  • RE: Finding numeric and alpha vs just alpha data query

    karen.blake (9/7/2015)


    Hi All,

    Will try and explain this better.

    We have a SAL field in the database that has numeric and alpha and just alpha data in it.

    I need to get a...

  • RE: Runtime-Error: SQL-Server does not exist

    Quick thought, according to the log the server is listening on TCP 1433 and 1434(DAC) but no mentioning of UDP 1434, is the Browser Service running?

    😎

  • RE: IM003 - Error when trying to connect ....

    algytaylor (9/7/2015)


    Hello! This is my first post here 😀

    PHP has been printing out the following error when I try to connect to SQLServer 2008 RC2:

    Fatal error: Uncaught exception 'PDOException' with...

  • RE: The Scientific Method

    One can truly argue that science is probably the greatest invention but in the adoption of scientific methods in the software industry it has somehow gotten lost in translation. Hypothesis...

  • RE: SQL Server Agent Job Fail running an SSIS Package

    keng_mkt (9/7/2015)


    In Command line tab

    /FILE "\"C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SSIS_KENG_TEST4_86_TO_21\SSIS_KENG_TEST4_86_TO_21\Package.dtsx\"" /DECRYPT /CHECKPOINTING OFF /REPORTING E

    Quick question, can the SQL Server Agent access the Administrator's home directory?

    😎

    Suggest you read this article: Setting...

  • RE: ISNULL vs IS NULL performance

    Piling on Andrew's and Ed's good answers: avoid using functions on the columns in the where clause if possible and all the alternatives forms of that, such as function in...

  • RE: Insert a XML with Chineese strings in Table

    Quick suggestion, use N'' prefix, then the SQL Server automatically uses UTF-16

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.TABLE1') IS NOT NULL DROP TABLE dbo.TABLE1;

    CREATE TABLE dbo.TABLE1

    (

    XXXX varchar(255) NULL

    ...

  • RE: Error in Restoring Database

    maddukuru.rambabu (9/6/2015)


    Hi All,

    Please find attachment which contains screenshot of Error

    Please Help me.

    If you are trying to overwrite the existing database then use WITH REPLACE (options tab in the restore database...

  • RE: SQL Server Agent Job Fail running an SSIS Package

    Post the full configuration for the agent job.

    😎

Viewing 15 posts - 4,606 through 4,620 (of 8,761 total)