Viewing 13 posts - 166 through 178 (of 178 total)
I usually do what rbarryyoung says
But if you are deploying to many servers frequently, you can consider an SSIS package.
Use the Transfer SQL Server Objects Task. You can...
July 21, 2008 at 7:29 am
You have to do some diagnostics and post results unless you want to just get guessing answers.
on the db server in command prompt do:
telnet localhost 1433
do you get connected, or...
July 8, 2008 at 7:10 am
here is a query i use frequently when taking over databases I didn't create:
select b.table_name, a.name, a.type_desc
from information_schema.tables b left join sys.procedures a on OBJECT_DEFINITION(a.OBJECT_ID) like '%'+b.table_name+'%'
where b.table_type = 'BASE...
July 2, 2008 at 12:00 pm
try this (you have some syntax incorrect)
DECLARE @cmd1 varchar(100)
SET @cmd1 = 'ALTER DATABASE [?] SET SINGLE_USER'
DECLARE @cmd2 varchar(100)
SET @cmd2 = 'dbcc checkdb('?',repair_rebuild) '
DECLARE @cmd3 varchar(100)
SET @cmd3 = 'ALTER DATABASE [?]...
June 24, 2008 at 8:45 am
change to
EXEC sp_MSforeachdb @command1="DBCC CHECKDB ('?')"
June 13, 2008 at 1:50 pm
run this query instead
SELECT
SERVERPROPERTY('productversion') "version",
SERVERPROPERTY ('productlevel') "service pack",
SERVERPROPERTY ('edition') "edition"
Always suggest testing before installing a SP. So if you have a test server, do that first.
If...
June 13, 2008 at 1:46 pm
I'd first check Oracle client folder (probably c:\Oracle) might need some perms.
Make sure the account you are running sql as has read access to this folder and subcontents.
Also, if you...
June 13, 2008 at 10:49 am
Get the ODBC Driver
http://www.postgresql.org/ftp/odbc/versions/msi/
then setup a standard ODBC link to your system DSN you create
http://msdn.microsoft.com/en-us/library/ms190479.aspx
I've never done it for this DB before, but works fine...
June 13, 2008 at 10:40 am
Sure this is possible.
Take nwind.mdb in root of C drive for example
Create new linked server in SSMS
Linked Server = NWIND
- Other Data Source Checked
Provider = Microsoft Jet 4.0 OLE...
June 13, 2008 at 9:03 am
from what i understand, what you are trying to do isnt supported by any OLE/ODBC provider I know of. Usually you encrypt a password when saved in a file...
June 13, 2008 at 8:40 am
You need to be a bit more clear on this..
Encrypted string in an application and building a connection string?
- decrypt password, build unencrypted connection string use that to connect.
Connection...
June 13, 2008 at 7:55 am
If you're just looking to transfer table data, create an SSIS package with a simple dataflow task.
Or you could look into the "SQL Server Migration Assistant for Access"
June 13, 2008 at 7:11 am
I run this SP:
EXEC xp_fixeddrives
along with a bunch of other queries (error logs, failed agent jobs, db file usage, etc) against all primary sql servers on a scheduled agent job...
June 13, 2008 at 7:05 am
Viewing 13 posts - 166 through 178 (of 178 total)