Viewing 15 posts - 301 through 315 (of 583 total)
the default instance name will be what ever you specify in the "SQL Server Network Name" on the "Instance Configuration" screen (same screen you choose default or named insatnce)
November 27, 2012 at 3:07 pm
well lets give this a try.
run the following in SSMS when you are logged in to your remote mobile client
SELECT session_id,login_name,host_name
FROM sys.dm_exec_sessions
where session_id > 50
it...
November 27, 2012 at 2:58 pm
I enabled server authentication and made a strong PW for the 'sa' account. (why i enabled SA, beacuse I thought to remotely login from other networks off site, I needed...
November 27, 2012 at 1:49 pm
1. for SSIS I can use 2008 R2 version BIDs for developing both 2008 and 2008 R2 SSIS package and deploy them to 2008 and 2008 R2 production server respectively?
since...
November 26, 2012 at 3:20 pm
I don't think you will be able to have SSIS 2008 and 2008 r2 on the same box as SSIS is shared across major versions. The Database engine, Analysis servers,...
November 26, 2012 at 1:51 pm
here you go
November 23, 2012 at 10:51 am
Might have been a bad plan in cache on the day it was running bad and that plan got flushed out and a correct plan was created the next day.
you...
November 20, 2012 at 9:11 am
I think you need the "Process database" permission to be able to refresh the cube.
November 16, 2012 at 10:14 am
Here you go
SELECT total_physical_memory_kb
FROM sys.dm_os_sys_memory
November 6, 2012 at 8:33 am
check this out although i think it's a moot point because it would require you to change settings on the 2000 box
October 25, 2012 at 11:23 am
have a look at this http://sqlblog.com/blogs/roman_rehak/archive/2009/05/10/issue-with-64-bit-sql-server-using-sql-2000-linked-server.aspx. not exactly the same error but same symptom.
October 25, 2012 at 11:07 am
I believe it is correct to say SQL Server 2008 R2 RTM because it is a different version. you cannot apply the same Service packs or cumulative updates to both...
October 23, 2012 at 9:19 am
you have to qualify the database in the query with a ?. you can also load the result into a table to make them searchable
CREATE TABLE #tmp(dbname VARCHAR(256),username VARCHAR(256))
INSERT #tmp...
October 17, 2012 at 9:09 am
this should get you what you want per database (without excluding any users)
select name from sys.database_principals
where type in ('S','G','U')
give it a try with sp_msforeachdb and post back if you are...
October 17, 2012 at 8:41 am
Viewing 15 posts - 301 through 315 (of 583 total)