Forum Replies Created

Viewing 15 posts - 541 through 555 (of 609 total)

  • RE: Recent date

    ok i think i have to use max(date).

    thanks

  • RE: READ UNCOMMITTED vs. NOLOCK

    I was just wondering how do i use READ UNCOMMITTED isolation level when i do bulk/fast load using ssis packages, as we have to import our production data (no updates,...

  • RE: dropdown list in ssrs report

    I have the drop down list populated in the report and also my store proc is OK with all the IF statements for parameter values. Now how would i use...

  • RE: Tool Recomendations

    I am looking for a tool that checks hundereds of rules in our scripts automatically and give us a reports for each test case. We do not have a testing...

  • RE: SQL Server Queries

    We also use Quest Spot Light, does it give any such information about number of queries.

  • RE: Audit Counts

    My doubt on using this code

    SELECT so.name [TableName], si.rows [RowCount]

    FROM sysobjects so

    INNER JOIN sysindexes si on si.id = OBJECT_ID(so.name)

    WHERE so.xtype = 'U'

    The above code will get me row count...

  • RE: Insert

    I am trying to do something like this

    INSERT into OBBR.Emp.dbo.Revcounts

    (col1,col2,dbname)

    SELECT

    col1,col2,server-db

    FROM #temp

    In the column dbname i would like to have server.dbname and i am doing this way...

    (@@servername+db_name())

  • RE: Audit Counts

    How can i run the same query to pull data from 30 such databases where in it should also insert a filed with the databasename from where the counts are...

  • RE: Size of a Database

    How can i find just the data size in a DB without Log size?

  • RE: Memory USage

    minimum is set to = 0

    max is set to = 28672 MB out of 32GB.

  • RE: Memory USage

    right now i set it up to use 80% of the available memory but though there is nothing running on sql server why does full 80% is used, any reason?

  • RE: Audit Counts

    Thank you JAmie

    I am able to insert a record in the table but i do have 30 such tables to insert 1 record in each which has to query 30...

  • RE: Audit Counts

    I have create a table for each database i restore so that i can save counts with timestamp for audit purpose.

    CREATE TABLE [dbo].[SIRS_Counts](

    Col1 [int] NULL,

    Col2 [int] NULL,

    Col3 [int] NULL,

    Col4 [int]...

  • RE: Audit Counts

    I want to report all the counts in a spread sheet with in my backup -restore sql job.

  • RE: Automated backup jobs from LiteSpeed

    All are full backups and the databases are in simple mode.

Viewing 15 posts - 541 through 555 (of 609 total)