Forum Replies Created

Viewing 15 posts - 20,086 through 20,100 (of 26,484 total)

  • RE: Stored Procedure Error

    In SQL Server 2000, you may need to make those DDL statements dynamc sql and run them with the EXEC command in your stored proc.

  • RE: Primary Filegroup

    At this point I'd say shrink the Primary file group. If all you have there now are system objects, no user objects, you can reclaim the unused space.

  • RE: Error - Operand data type nvarchar is invalid for sum operator

    Not really enough information here to assist. It might help if you could provide the entire error message you have in the application log plus a few entries on...

  • RE: Backup Failure

    Your directory structure may differ, but this is where I find my output files for the maintenance plans run on one of my servers:

    C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG

    Look there and you...

  • RE: Full recovery model

    I'm not going to tell you how to setup your databases. You need to make a decision on how you want it based on the input you have been...

  • RE: SELECT Last Date for each ID

    To really help you we need a few things from you. Please provide the DDL (CREATE TABLE) statements for the table(s) involved in your query. Sample data in...

  • RE: Full recovery model

    Krasavita (7/1/2009)


    Thank you for your help, so just be cleared.I will find out how much data comes daily,but in mean while. This is how I will set the db settings:

    For...

  • RE: Full recovery model

    Couple of things. One, setting the data file to grow in 1 MB increments is not quite right, especially since the database is apparently about 4 GB in size....

  • RE: transactional replication

    guptaajay1985 (6/30/2009)


    Dear All,

    I want to know meaning and working of all jobs...

    Thanx

    Due to the depth and breadth of this request, the best I can do is tell you to start...

  • RE: permission prob

    shiv (6/30/2009)


    Hi Guys,

    i had giving some permission to users

    UPDATE,INSERT, DELETE which permission i had to given these guys,

    bulk admin or ddl admin could u please suggest me

    Thanks

    Not sure what...

  • RE: Help me for insert on query please

    Okay, my post above looks strange to me.

  • RE: Help me for insert on query please

    Sample code for you to play with. You will need to put the data into a text file, and be sure to modify the line where I have the...

  • RE: Inner Join issue

    Here is more code for you to take a look at and play with.

    CREATE TABLE [dbo].[MainTable](

    [DrugName] [nvarchar](255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [CalendarYear] [int] NULL,

    [CalendarMonth] [int] NULL,

    [CalendarQuarter] [nchar](10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,

    [PatientID] [nvarchar](255) COLLATE...

  • RE: how to insert record from one table to another

    The UDF is a Dynamic Tally table. Take the time to read the second to last article I reference below in my signature block regarding Tally tables. You...

  • RE: Help me for insert on query please

    Nardig (6/30/2009)


    ok i have one table with MemberID, Name, Surname and City and information for inserted on this table and i have on text file for example 1001, John, Smith,...

Viewing 15 posts - 20,086 through 20,100 (of 26,484 total)