Forum Replies Created

Viewing 15 posts - 676 through 690 (of 1,131 total)

  • RE: MMC Error

    Do you have SQL Server Service Pack 4 for the Client tools installed ?

    SQL = Scarcely Qualifies as a Language

  • RE: Sql server working in Mixed mode,but ... Not associated with a trusted SQL Server connection.

    A few means of diagnosing the problem:

    a) Use SQL Profiler to capture event "Login Failed" (under "Security Audits") and columns loginame and hostname.

    Then try to connect and Profiler...

    SQL = Scarcely Qualifies as a Language

  • RE: Decimal Identity Column

    From Books On line, for three data types, the storage bytes and maximum value are listed below. Also provided are the number of years before the maximum value is...

    SQL = Scarcely Qualifies as a Language

  • RE: count problem

    Please provide DDL and sample data and do not provide narrative and listings. http://www.aspfaq.com/etiquette.asp?id=5006

    The real problem is that the table are not normalized. In this case, the "CourceGroup"...

    SQL = Scarcely Qualifies as a Language

  • RE: Pat on the back for who can help solve this debugging...

    set @SqlString = N'select @Column_name = Column_Name from information_schema.columns where table_name = ''' + @Table_Name + ''' and Ordinal_position = ' + @Counter

    This set statement is intended to append...

    SQL = Scarcely Qualifies as a Language

  • RE: Proper Use of Joins

    As a rule of thumb, when joining, the on criteria will be the primary key of one table equal to the foreign key of the other table.

    If you are not...

    SQL = Scarcely Qualifies as a Language

  • RE: IsDate not functioning as expected

    I can reproduce your problem by setting the some environmental options by running either:

    set dateformat dmy

    set language British

    You seem to be expecting this option to be mdy.

    Run DBCC USEROPTIONS to...

    SQL = Scarcely Qualifies as a Language

  • RE: securing .mdf File

    " i want to deliver mdf file in the cd and my software will attach it , but i want to limit that no one can attach it in...

    SQL = Scarcely Qualifies as a Language

  • RE: Insert 5 rows in one table based on a count of records in Another table

    Please do not post in more than one forum.

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=346521

    SQL = Scarcely Qualifies as a Language

  • RE: Insert 5 rows in one table based on row count of Another Table

    Your requirement statement is too vague to define a soulution

    Please provide DDL and sample data including the "model office" table, the condition table and the "model office condition" table. ...

    SQL = Scarcely Qualifies as a Language

  • RE: Database file sizes over 300GB

    "Has anyone had trouble using and backing up 300GB + databases in one file? "

    With a SAN, not using large database specifically.

    For backups of larger databases, recommend performing parallel backups...

    SQL = Scarcely Qualifies as a Language

  • RE: logins integrated with AD

    To diagnose, run SQL profilier and monitor events for logins including failures, sql:batchcompleted and sql:batchstarting

    This will capture the exact SQL being issued by the application and any error messages.

    SQL = Scarcely Qualifies as a Language

  • RE: Figuring Out Objects Not Owned by DBO...

    "I also tried using sp_MSforeachdb to no avail"

    You need to be aware of the parameter @replacechar, which defaults to '?'. Try this SQL:

    if object_id('tempdb..#Objects') is not null drop table...

    SQL = Scarcely Qualifies as a Language

  • RE: Login Fixed Server & Database Roles

    Here is some SQL that you can run:

    -- For logins

    Setnocount on

    Selectcast( serverproperty ('machinename') as nvarchar(128) )as machinename

    ,coalesce ( cast( serverproperty ('instancename')as nvarchar(128) ) , 'default')as instancename

    ,loginname

    ,createdate

    ,updatedate

    ,dbname

    ,language

    ,denylogin

    ,hasaccess

    ,isntname

    ,isntgroup

    ,isntuser

    , password

    From master.dbo.syslogins

    go

    -- Server...

    SQL = Scarcely Qualifies as a Language

  • RE: index corrupt with bit field

    There are quite a few fixes for indicies on columns with a datatype of bit.

    Do you have Service Pack 4 installed ?

    SQL = Scarcely Qualifies as a Language

Viewing 15 posts - 676 through 690 (of 1,131 total)