Forum Replies Created

Viewing 15 posts - 841 through 855 (of 921 total)

  • RE: Updating the database structure

    Just use the same scripts as you created to alter the tables on the development server.

    --Jonathan

  • RE: Switching to another web host

    If by "registered users" you mean you have created a SQL Server login and user account for each (and, if this is the case, I suggest rethinking that strategy), check...

  • RE: Date issues

    quote:


    No. events. like every Tuesday We have a management meeting


    September 28, 2003 at 7:31 pm

    #476128

  • RE: Date issues

    Are you asking about jobs scheduled for the SQL Server Agent (i.e. msdb..sysjobschedules?

    If not, I think we'd need more information about your schema...

    --Jonathan

  • RE: How do I go around constaints while Importing data

    As there's no such thing as a "delete constraint," I'm guessing that foreign key constraints on other tables preventing you from deleting the old values prior to importing the fresh...

  • RE: Scheduling of Tran Logs and Full Backups...

    quote:


    I had a similar concern....

    Backing up the database does not flush the transaction log and thus does not break the chain of...

  • RE: Move table to different filegroup

    quote:


    I know you can move a table to a different filegroup in Enterprise Manager. How can this be done via a...

  • RE: date selection

    quote:


    All right, got it, it works, cool, thank you so much!!!

    Now, another thing that I just thought of, On Fridays, it needs...

  • RE: formatting data of float type

    Format the data in your front-end. If you're just trying to make it look pretty in QA, you could use the STR() function or CAST is as a decimal,...

  • RE: Top Memory User

    select top 1 hostname, user_name(uid), program_name, db_name(dbid) from master.dbo.sysprocesses order by memusage desc

    --Jonathan

  • RE: date selection

    quote:


    OK, I dont know if I explained this right. This will not be a report that someone can click on, choose a...

  • RE: sql query help

    CREATE FUNCTION dbo.udf_ListCols(@IndexName sysname)

    RETURNS nvarchar(4000) AS BEGIN

    DECLARE @List nvarchar(4000)

    SELECT @List = ISNULL(@List + ', ','') + Col_Name

    FROM Indices

    WHERE Index_Name = @IndexName

    ORDER BY Key_Seq

    RETURN(@List) END

    DECLARE @Index_Name sysname, @Table_Name sysname

    DECLARE @sql varchar(8000)

    DECLARE...

  • RE: Transaction Log writes...

    quote:


    We have a new director of IT and he has a very strong Oracle background and worked for them at one point...

  • RE: Memory Problem

    quote:


    why sqlserver is using all the memory on the server?


    Because that is what it is...

  • RE: How many channels to use.

    quote:


    Perhaps I am missing something... What is backplane?


    That's the connector board that the cable...

Viewing 15 posts - 841 through 855 (of 921 total)