Viewing 15 posts - 31 through 45 (of 63 total)
Hope below link will help
http://rafael-salas.blogspot.com/2007/02/ssis-loop-through-files-in-date-range.html
October 9, 2008 at 1:02 pm
Anyway if you want to still change the owner of DTS package then use undocumented SP in MSDB to do it (sp_reassign_dtspackageowner [@name =] 'name',
[@id =] 'id',
[@newloginname =] 'newloginname'
October 7, 2008 at 1:15 pm
Performance wise OPENQUERY is little more efficient .
October 6, 2008 at 9:43 am
This Third shared disk is for transational log files(ldf) for your database, if you don't want to put these on seperate disk that data files(MDF) you only need 2 shared...
October 2, 2008 at 1:52 pm
IF the disk where you are moving the Master database is iunder SQL Server Dependency and you have properly given path in surface configration with -d and -l parameter and...
October 1, 2008 at 1:21 pm
Todd
If you are using any Customize piece for SQL Server from Vendor then Locking Login may be additional feature they might have introduce in that Software , so for that...
September 26, 2008 at 11:32 am
SQL Server 2000 won't lock/disable the Login as this feature is availble in SQL Server 2005 not in 2000.
September 26, 2008 at 9:55 am
USE Databasename
GO
Exec sp_changedbowner 'new login name'
September 10, 2008 at 12:16 pm
Like
Select * from linkedservername.databasename.schema.table or view name
eg-- Select * from server1.master.dbo.sysdatabases
September 10, 2008 at 12:10 pm
SELECT name
FROM sysobjects
WHERE xtype='U'
AND objectproperty(object_id(name),'TableHasForeignKey')= 0
ORDER BY 1
August 28, 2008 at 10:28 am
you can check the -g parameter option for incresing memory area for application , not good practice but can be helpfull sometime
August 28, 2008 at 10:06 am
try a shot
declare @number varchar(10)
set @number =(select distinct Number from tablename where conditions)
select '00'+ @number
August 27, 2008 at 3:22 pm
I won't find any problem with this syntax SELECT * into Tbl_Cars FROM V_Cars.
Why it's showing odd results for you.
August 20, 2008 at 2:24 pm
Just rename the name cloumn with any other name as below.then it will works
Use adventureworks
go
select name as colname, *
from production.product
ORDER BY [name]
Try it now.
Thanks
August 18, 2008 at 3:05 pm
Viewing 15 posts - 31 through 45 (of 63 total)