Viewing 15 posts - 841 through 855 (of 1,655 total)
In order to add components to an exisiting installation go open add/remove software in control panel. When select SQL Server 2005 and the installion wizard will start. It will ask...
July 5, 2008 at 10:35 am
It would help a lot if you would post the exact error you got before.
Without that it we are guessing.
July 4, 2008 at 4:06 am
[font="Courier New"]select ... from sys.databases where owner_sid != 1[/font]
Antonio,
while I agree it's not 100% safe to rely on db_id, the problem with you're attempt is that it will only...
July 4, 2008 at 1:01 am
Not sure what exactly you want but I usually use WHERE database_id > 4.
If you want to execute a query on all user databases you can use this:
EXEC master..sp_MSForeachdb 'USE...
July 3, 2008 at 8:48 am
is there any solution...
There are several solutions, but I think the main question is how do you authenticate in your datasource? Do you use Windows authentification, then your users...
July 3, 2008 at 5:57 am
You can adjust the merge agent profile for slow connections. For example selecting a smaller batch size or higher timeout values. If I remember right there's also a build in...
July 3, 2008 at 5:17 am
No, a replication snapshot is totally different from a database snapshot. Basically what applying the snapshot means is that all objects which are part of your publication are (re)created in...
July 3, 2008 at 3:18 am
The list of reports is stored in a XML file which you can find under
C:\Documents and Settings\UserName\Application Data\Microsoft\Microsoft SQL Server\90\Tools\Shell\Reports.xml
July 3, 2008 at 2:49 am
These are orphaned sessions and you should kill them. Unfortunately you can't kill them the easy way by running Kill -2 ,but you need to find the Unit of Work...
July 3, 2008 at 1:34 am
You can upgrade you're existing cluster as long as you use Enterprise edition of SQL2005. Microsoft has a very detailed whitepaper about upgrading in all kind of scenarios. Check it...
July 3, 2008 at 1:28 am
In SQL 2000 maintenance plans the backup is taken first and then the old files are dteleted. You cannot change this behaviour within SQL 2000 maintenance plan, you need to...
June 30, 2008 at 7:41 am
In a SQL 2005 maintenance plan you can define the removal of old backups as a separate task. If you want to remove your old backup files before creating a...
June 30, 2008 at 6:43 am
If it's in a stored procedure you could use the EXECUTE AS option to run the procedure in the security context of anther login. I'm not sure it will work...
June 27, 2008 at 9:39 am
You have to use CASE to achieve this.
Something like this
create table t1(c1 int Identity(1,1),
c2 datetime,
c3 datetime)
go
Insert into t1(c2,c3)
Select Getdate()-3, Getdate()-5
Union all
Select Getdate()-3, Getdate()-2
go
select c1,
Case
When c2 > c3 THEN...
June 27, 2008 at 3:44 am
Viewing 15 posts - 841 through 855 (of 1,655 total)