Forum Replies Created

Viewing 15 posts - 511 through 525 (of 1,109 total)

  • RE: Does it make sense to split large binary data in two tables?

    Much depends on how frequently you want to access the binary data, and how many rows you want to squeeze in to your priamry data pages.

    Smaller blobs can be stored...

  • RE: BACKUP AND RESTORATION

    pradeep kansara (1/14/2008)


    I WANT COMPLETE DETAIL ABOUT BACKUP AND RESTORATION,LOG SHIPPING FOR SQL-2000

    PLEASE HELP ME AS EARLY AS POSSIBLE.

    Books online, the documentation that comes with SQL Server is an excellent...

  • RE: counting value in a field and outputing a table

    k.furness (1/11/2008)


    Hi Andras

    Thanks for the swift reply.

    Not sure if this will work as I forgot to mention there are 150 fields Q1 to Q150

    Tried to run script and got an...

  • RE: Selecting the "most recent" entry in a table

    Jim Russell (1/11/2008)


    Thanks Matt! And that also avoids the confusion created by the sub-query (although it makes it T-SQL specific). Yet a third approach to analyze and time.

    And it...

  • RE: Selecting the "most recent" entry in a table

    What about:

    SELECT x.RECENT

    , x.[SSN]

    , x.[Date]

    FROM ( SELECT ROW_NUMBER() OVER ( PARTITION...

  • RE: One Very Use full Idea

    In addition to my previous warnings, here are some more 🙂 Do make sure that you are happy with modifications to the master database. Note also, that dbo.sp_MS_marksystemobject is not...

  • RE: One Very Use full Idea

    teligaurav (1/11/2008)


    Hello Andras Belokosztolszki ,

    Thank you For your reply

    I tried your 'trick'

    it is working

    but i need to call sp_temp that i created as 'global' in...

  • RE: Trigger

    gouripatil23 (1/11/2008)


    Hi!

    I want Update one table when in another table insert new record .I didn't understand how i get this new inserted ID.

    Regards

    Gouri

    Hi Gouri,

    In the trigger body you have...

  • RE: counting value in a field and outputing a table

    k.furness (1/11/2008)


    I have the following table of date

    Q1 Q2 Q3

    1 2 1

    1 3 2

    3...

  • RE: One Very Use full Idea

    Hi,

    my first comment would be is to avoid the old system tables/views on 2005. Instead of syscomments use sys.sql_modules.

    Another "trick" that is worth considering, is to prefix the stored procedures...

  • RE: Undo database changes

    paulholl (1/11/2008)


    I have checked and the Recovery Mode is FULL

    You mentioned that there are no backups to restore. If the database has never been backed up then the recovery mode...

  • RE: Undo database changes

    paulholl (1/10/2008)


    Hello, I have a problem with one of my clients to do with a SQL Server 2005 database but I am a relatively inexpirienced with SQL Server.

    A query has...

  • RE: How can I set the authentication mode for a SQLServer from TSQL

    pg53 (1/10/2008)


    I thought the registry was the only way to change it too, but I've just discovered that in SSMS it's possible to select the server node, properties, security -...

  • RE: text data type question

    Benjamin Kovac (1/10/2008)


    Thanks Andras,

    At the moment it looks we are going to stick with MSSQL 2000, but will change in short time.Anyway thanks for your quick reply. I should say-koszi...

  • RE: text data type question

    Benjamin Kovac (1/10/2008)


    Hiya,

    having a table for storing Terms&Condition texts (for storing multiple whitelabel terms&cond.), so wondering which data type would be better for storing the terms text itself.Should be nvarchar(max)...

Viewing 15 posts - 511 through 525 (of 1,109 total)