Forum Replies Created

Viewing 15 posts - 181 through 195 (of 320 total)

  • RE: try catch costs vs @@Error

    Mischa E.J. Hoogendoorn (11/12/2008)


    Hi,

    I am working with sql-server 2005 since a few weeks, (before it was sql2000), and there is one advantage I'd like to use, and that is the...

  • RE: All database physical_name Path

    steveb (11/12/2008)


    try this code to get the file paths for each db on a server.

    DROP TABLE #DBFiles

    CREATE TABLE #DBFiles

    (

    [DBName] [nvarchar](100),

    ...

  • RE: How To utilize log files

    if you will restore a backup, you will loose the changes after that backup of which restore you will take

  • RE: Is there a better way for this code?

    IS there any use of Order By clause here

  • RE: Securing Data

    GilaMonster (11/12/2008)


    krayknot (11/12/2008)


    he wants to hide the table and he can hide the xml.

    Where? In another table? In the file system? Some other place?

    not in another table. just on the...

  • RE: Securing Data

    GilaMonster (11/12/2008)


    krayknot (11/12/2008)


    yes

    store the pricing in xml and at the tiime of requirement, call the xml data in table variable (if the size is upto medium) and use temp table...

  • RE: Securing Data

    sairams (11/11/2008)


    Dear kshitij,

    Thanks 4 your reply...

    Encrypting the confidential values means i need to do a mass work on the application..Is there any other better option

    Thanks,

    Sairam

    yes

    store the pricing in...

  • RE: How To utilize log files

    Anu (11/12/2008)


    hello.. see i just only wants the earlier code , from the sql server database , there is no demand for that must from log files !

    any way...

  • RE: Securing Data

    sairams (11/11/2008)


    Hi,

    My problem is that i have a table which stores pricing information. I would like to secure the information stored in this table.

    1. How will i avoid unnecessary...

  • RE: How To utilize log files

    Anu (11/11/2008)


    Hi Sql Server's,

    Here the scenario like this , i am using a stored proc that contains some functional business logic ,here i didn't took the backup script and start...

  • RE: How to Copy a record in the same table and modify some columns.

    Kishore.P (11/10/2008)


    use "uniqueidentifier" in your table.

    Uniqueidentifier is a string constant in the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, in which each x is a hexadecimal digit in the range 0-9 or a-f. For example,...

  • RE: How to Copy a record in the same table and modify some columns.

    rd (11/7/2008)


    Hi there,

    I like to keep several versions of a record in a table. To accomplish that I use the following SQL statement

    BEGIN

    IF object_id('tempdb..#T') IS NOT NULL

    DROP TABLE #T

    SELECT *...

  • RE: Storing Negative Numbers

    tymberwyld (11/10/2008)


    Basically what's going on here is that someone is looking at some wireframes of the UI and that's getting translated directly into a database design. If they want...

  • RE: another question regarding performance dashboards..

    iqtedar (11/10/2008)


    i was told to generate performance dashboard reports on two different databases. I never used performance dahsboards before. I request sql gurus here to help me with finding the...

  • RE: Stored Procedures that access two separate databases

    Kim Talley (11/10/2008)


    We do not allow dynamic sql on our servers. All SQL is done through stored procedures. The problem I have now is a stored procedure that needs to...

Viewing 15 posts - 181 through 195 (of 320 total)