Viewing 15 posts - 1 through 15 (of 49 total)
For me unfortunately although I know what I want to do, due to development of an allergy, I cannot, so I'm in the situation where anything that allows me to...
May 20, 2010 at 2:59 am
Of course if you want to be really lazy, convince your boss to buy you a copy of redgate, then you only have to press tab after placing the cursor...
September 11, 2009 at 8:55 am
Just realised, mine is 2008 which we are moving from a named instance to the default instance on the other machine, and thought we might rename the databases, but here's...
March 6, 2009 at 7:33 am
Have just encountered same myself, after searching through the database, the aforementioned trigger is not the only place where the name of the temporary database is hard coded, it is...
March 6, 2009 at 1:42 am
Hi,
You could write a program using the filesystemwatcher class and then call the ssis package
see http://msdn2.microsoft.com/en-us/library/ms136090.aspx
December 7, 2006 at 5:58 am
Hi Scottye,
Using the not for replication option does not mean that the trigger is not replicated, it means this (from BOL)
NOT FOR REPLICATION
Indicates that the trigger should not...
December 15, 2005 at 1:57 am
Have you added the not for replication clause when creating your triggers
Regards
William
December 14, 2005 at 5:31 am
Hi Haris,
Why not just use another udf to return the value, this works on the pubs database to return a list of the author id
IF EXISTS (SELECT *
FROM ...
December 6, 2005 at 6:47 am
Hi Bah,
You need to pass a recordset to the function.
So to do this you need to create an adodb recordset upfront, and pass that through as the second argument.
November 4, 2005 at 1:35 am
Hi,
The way that I do it is to write the recordset to a file, and then use the file as the datasource for the mail merge, here's the function, you...
October 27, 2005 at 2:13 am
Hi,
Try this
CREATE FUNCTION dbo.ufn_Split
(
@StringIn nvarchar(2000),
@Delimiter nvarchar(5)
)
RETURNS @RtnValue table
(
Id int identity(1,1),
SearchValues varchar(500)
)
AS
BEGIN
Declare @Cnt int
Set @Cnt = 1
While (Charindex(@Delimiter,@StringIn)>0)
Begin
Insert Into @RtnValue (SearchValues)
Select SearchValues = ltrim(rtrim(Substring(@StringIn,1,Charindex(@Delimiter,@StringIn)-1)))
Set @StringIn = Substring(@StringIn,Charindex(@Delimiter,@StringIn)+1,len(@StringIn))
Set...
October 23, 2005 at 5:10 am
It's probably something to do with your connection string, the easiest way to find out what it should be is to create a new Access Project with existing data and...
September 28, 2005 at 6:03 am
If you use the Value function in a new column, then you can sort on that column and end up with the desired results
August 3, 2005 at 5:49 am
Please bear in mind that you do have to run the snapshot if you need to initialise new subscribers
June 23, 2005 at 2:33 am
select city_code, outlet_codefrom ......
where convert(datetime,delete_date,1) > '20070101'
June 16, 2005 at 6:42 am
Viewing 15 posts - 1 through 15 (of 49 total)