Viewing 15 posts - 106 through 120 (of 246 total)
DNA (6/18/2009)
In SQL 2005, use the following: select * from sys.master_files
And in sql server 2000 how to list all the sysfiles
June 18, 2009 at 12:45 am
Need more clarifications didn't exactly understand your need.
to restrict the growth of your log file
USE [master]
GO
ALTER DATABASE [DB_TEST] MODIFY FILE ( NAME = N'DB_TEST_log', MAXSIZE = 2147473408KB )
GO
June 18, 2009 at 12:39 am
select * from sysfiles
June 18, 2009 at 12:01 am
i changed the port one which sql server 2000 was listening since the default port 1433 was used by sql server 2005
and gave Server name as
instance_name,port_number
Now im able to...
June 14, 2009 at 11:31 pm
Are you running the SQL Server services and the SSAS2005 services with the same or different accounts?
When you process a cube the SSAS2005 must have permissions to read data from...
June 11, 2009 at 3:09 am
GilaMonster (6/11/2009)
Why do you want to shrink? Databases tend to grow as more data gets put in them. It's in their nature.
Gila so what should be done when your log...
June 11, 2009 at 3:03 am
Use import and export wizard........
In edit mapping Choose to append the data to the destination.
The new rows will be appended to the existing table.
June 11, 2009 at 12:59 am
Hi.
This might help
--
--SQL Server 2005
SELECT [Name], Create_Date, Modify_Date
FROM sys.objects
WHERE [type] = 'P' and [Name] = ''
--SQL Server 2000
select specific_Catalog,specific_name,created,last_altered
from information_schema.routines
WHERE
Routine_Type='procedure'
AND specific_Catalog='database'
--
June 11, 2009 at 12:33 am
QL Server Linked Servers feature lets you access Oracle data and data from other OLE DB/ODBc compatible data sources from SQL Server. Here are the basic steps for setting up...
June 8, 2009 at 3:41 am
Viewing 15 posts - 106 through 120 (of 246 total)