Viewing 15 posts - 841 through 855 (of 921 total)
Just use the same scripts as you created to alter the tables on the development server.
--Jonathan
September 29, 2003 at 5:24 am
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...
September 29, 2003 at 5:22 am
quote:
No. events. like every Tuesday We have a management meeting
September 28, 2003 at 7:31 pm
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
September 28, 2003 at 4:32 pm
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...
September 28, 2003 at 3:56 pm
quote:
I had a similar concern....Backing up the database does not flush the transaction log and thus does not break the chain of...
September 26, 2003 at 6:51 pm
quote:
I know you can move a table to a different filegroup in Enterprise Manager. How can this be done via a...
September 26, 2003 at 4:19 pm
quote:
All right, got it, it works, cool, thank you so much!!!Now, another thing that I just thought of, On Fridays, it needs...
September 26, 2003 at 4:01 pm
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,...
September 26, 2003 at 2:13 pm
select top 1 hostname, user_name(uid), program_name, db_name(dbid) from master.dbo.sysprocesses order by memusage desc
--Jonathan
September 26, 2003 at 11:34 am
quote:
OK, I dont know if I explained this right. This will not be a report that someone can click on, choose a...
September 26, 2003 at 11:09 am
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...
September 26, 2003 at 11:01 am
quote:
We have a new director of IT and he has a very strong Oracle background and worked for them at one point...
September 26, 2003 at 10:35 am
quote:
why sqlserver is using all the memory on the server?
Because that is what it is...
September 26, 2003 at 8:45 am
quote:
Perhaps I am missing something... What is backplane?
That's the connector board that the cable...
September 26, 2003 at 8:13 am
Viewing 15 posts - 841 through 855 (of 921 total)