Viewing 15 posts - 46 through 60 (of 88 total)
ScottPletcher (1/10/2012)
Given that this is SQL 2008 (or SQL 2005 at least), you mean:SELECT *
FROM test.sys.database_files
right? 🙂
Yes of course 🙂
January 10, 2012 at 3:01 pm
Can you compare your project with a dbschema file ?
If so, just create the dbschema file by building your first project, open your other solution and then try to compare...
January 10, 2012 at 2:54 pm
Sorry.
What about this :
declare @cmd varchar(max)
SET @cmd = ''
SELECT @cmd = @Cmd + 'select Avg(Price) from [' + s.name + '].[' + o.name + ']
go
'
from sys.objects o
inner join...
January 10, 2012 at 2:42 pm
Matthew
I don't have any Visual Studio 2010 available right now so I cqn't check but if I remember it well, it is possible to schema compare everything (db or project)...
January 10, 2012 at 2:37 pm
Here it is :
declare @cmd varchar(max)
SET @cmd = ''
SELECT @cmd = @Cmd + 'select Avg(Price) from ' + name + '
go
'
from sys.objects where type = 'U'
select @cmd
exec (@cmd)
January 10, 2012 at 2:30 pm
What is it for ?
You can do it in a SSIS package as well.
January 10, 2012 at 2:28 pm
Can you give us the result you have when executing :
SELECT * FROM test.dbo.sysfiles
January 10, 2012 at 2:19 pm
PLease have a look at this :
http://blog.jitbit.com/2010/04/moving-sql-table-textimage-to-new.html
January 10, 2012 at 11:29 am
Duplicated post :
http://www.sqlservercentral.com/Forums/Topic1232922-392-1.aspx
January 10, 2012 at 11:24 am
Hi
It's not that easy.
You have to install Integration Services on your Production server (that must be done on your dev server);
It will install the required DTExec and the engine that...
January 10, 2012 at 11:23 am
- Can't you just get your 2 revisions as if they were separated projects and then use the GUI ?
- What do you mean by 'STill no joy ?'
It doesn't...
January 10, 2012 at 10:27 am
What is your policy about password expiration ?
Maybe the password just expired.
January 10, 2012 at 10:21 am
Default trace is enabled :
name minimummaximumconfig_valuerun_value
default trace enabled0...
January 10, 2012 at 6:57 am
Viewing 15 posts - 46 through 60 (of 88 total)