Viewing 15 posts - 46 through 60 (of 1,364 total)
Was this resolved?
June 9, 2010 at 4:35 am
When partitioning a clustered index, the clustering key must contain the partitioning column. When partitioning a nonunique clustered index, and the partitioning column is not explicitly specified in the clustering...
May 28, 2010 at 9:47 am
You can only grant select, insert,update and delete permission on a view. So, don't make use of alter and view...
May 27, 2010 at 8:42 am
Please share the resolution.
MJ
May 26, 2010 at 10:35 am
Sudhakar,
Its nicely demonstrated(with code) at http://www.dotnetjohn.com/articles.aspx?articleid=157
Sending SQL Server Notifications with CDOSYS...
HTH!
Manu
May 21, 2010 at 9:27 am
Found this on this excellent forum. Try it. Thanks to author.
'**********************************************************************
' Visual Basic ActiveX Script
'************************************************************************
Function Main()
Dim conServer
Dim fso
Dim iFile
Dim oJB
Dim strJob
Dim strFilename
Const ioModeAppend = 8
Set conServer = CreateObject("SQLDMO.SQLServer")
conServer.LoginSecure =...
May 20, 2010 at 11:47 am
Execute drop just after running the kill connections script.
declare @spid smallint
declare @cmd varchar(20)
declare spid_cursor cursor for
select spid from master.dbo.sysprocesses
where dbid=db_id('enter dbname here')
OPEN spid_cursor
FETCH NEXT FROM spid_cursor
INTO @spid
WHILE...
May 20, 2010 at 11:28 am
Please post the table definition here(along with constraints info, if any). Also, check for any triggers(especially insert triggers) on that table.
May 17, 2010 at 3:26 pm
BP-503183 (5/14/2010)
May 14, 2010 at 3:00 pm
Declare @num int
Set @num = 1 -- force it into loop first time (or could do count of no of records to be deleted ) ...
May 14, 2010 at 2:51 pm
Viewing 15 posts - 46 through 60 (of 1,364 total)