Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,109 total)

  • RE: Copy one row from any table to same table

    The first thing I noted was the way you were calling the stored procedure:

    exec dbo.TableRowCopy 'appversie','id',2, @newid

    the last parameter is an output parameter, so you should call it:

    exec dbo.TableRowCopy 'appversie','id',2,...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Which encryption algorithm to use?

    M Chabot (3/13/2008)


    Does anyone know of a place where the various encryption algorithms in SQL Server 2005 are compared? The books online says that the topic is out of scope...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: can we changge the order in the fields of an index?

    Terry (3/14/2008)


    Hello

    If a have an index with field1 and field2, is it the same if a do a query:

    select * from table where field1 = x and field2 = y

    or...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Can we see database name and size with osql 2000

    This has been posted at http://www.sqlservercentral.com/Forums/Topic469394-149-1.aspx

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how can we see database name and size with osql

    jagpalsingh4 (3/14/2008)


    Hi,

    Plz tell me that in sql 2000 we use osql .And i just use this query to see all servers with this query ''osql -L''

    but i m thinking...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Which Stored Procedure changed

    John's solution is nice, because it is using the INFORMATION_SCHEMA views (part of the SQL Standard :), and is portable). But if you prefer SQL Server 2005 (and 2008) system...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How can I Pass a Table variable in Stored Procedure?

    Sandy (3/14/2008)


    hey Andras,

    ------------------------------------------------------

    Unfortunately on 2005 you cannot pass table variables to stored procedures as parameters. You will be able to do this on SQL Server 2008, but that is not...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how to view transaction log file

    swatichari_itx (3/14/2008)


    Alright! but how does the maintains the log details does it maintain the data in the table or on the physical file.

    The details are maintained in the log file....


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how to view transaction log file

    swatichari_itx (3/13/2008)


    I always run the query using

    begin/commit transaction.

    But if i want to view the details of this transaction then how should i do this.

    Thanks in Advance.

    dbcc traceon(3604)

    dbcc log(1,1)

    dbcc...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How can I Pass a Table variable in Stored Procedure?

    Sandy (3/14/2008)


    Hi All,

    I need to pass a table variable in a stored procedure.

    Is it possible or not?

    Actually, My web Page contains 100 records in Data Grid.

    and I have to make...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Installing SQL Server on c drive

    Danny (3/12/2008)


    I have always installed SQL Server (2000 and 2005) on the c drive of the server, and placed the data and log files on seperate disks.

    Our network...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how to work out how many transactions per day

    Steve Jones - Editor (3/11/2008)


    Or urn Profiler, look for insert/udpate/delete stuff, save the file for a day and scroll through it at a meeting. Set your scroll to move slow...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how to work out how many transactions per day

    Jeff Moden (3/11/2008)


    Ya beat me to it, Andras... 😀

    Finally I got lucky enough 🙂

    Andras


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how to work out how many transactions per day

    winston Smith (3/11/2008)


    thanks for the reply. i am aware of log backups. the reason i am asking the question is because i want to have a strong case when i...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: how to work out how many transactions per day

    winston Smith (3/11/2008)


    my company has a heavily transactional database. their backup procedure is a full backup once a week and a diff backup once daily.

    This leaves a potential to lose...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

Viewing 15 posts - 331 through 345 (of 1,109 total)