Viewing 15 posts - 16 through 30 (of 181 total)
Thank you for the input Aaron. Can you please give me the sample code for creating the function.
Thanks,
MK
September 9, 2004 at 3:51 pm
Thanks for your reply, I know that we can import the data using DTS package and schedule it as a job to see if there are any updates and import the...
July 13, 2004 at 12:15 pm
Thankyou Allen for your Solution.
Actually I want to pass only one parameter to the function which is the current date or what ever date the user gives and the function...
January 23, 2004 at 6:39 am
I appriciate your response and thanks for your suggestions but I need to get this done in one days time that's why I have posted it here to get quick...
October 2, 2003 at 8:36 am
Thanks for the response.
I am forwarding you a link, right now it is in a web app.I think it will give you a clear understanding. I want to do the...
October 2, 2003 at 6:34 am
Because you did not have the insert in the create statement.
Try this
CREATE TRIGGER trg_UpdateFlag_U ON dbo.TableB
FOR INSERT, UPDATE
AS
update TableA
set flag = 0
from TableA
inner join TableB
on TableA.Unique_ID = TableB.Unique_ID
where TableBPrimaryKey_id...
August 12, 2003 at 3:20 pm
I think this is what you are looking for....
DECLARE @ID INT, @Len INT, @Begin INT, @End INT, @Last INT, @val INT
DECLARE CUR CURSOR FOR SELECT Number, LEN(Name) FROM TempTable
OPEN CUR
FETCH...
August 12, 2003 at 3:18 pm
Hi Peterzeke,
Hope this is what you are looking for.
CREATE TABLE DBO.TEST_NAMES(
NAME_ID INT IDENTITY(1,1),
NAME_DESC VARCHAR(50),
NAME_DESC_REVISED VARCHAR(50))
INSERT DBO.TEST_NAMES(NAME_DESC)
SELECT 'BROWN, JOE'
INSERT DBO.TEST_NAMES(NAME_DESC)
SELECT 'BROWN, JOE F'
INSERT...
August 7, 2003 at 11:18 am
Hi Wingman,
Try this
dtsrun /Sserver_name /Uuser_nName /Ppassword /Npackage_name /Mpackage_password
Thanks
August 7, 2003 at 10:54 am
I think I can use sp_attach_single_db_file
only when I detach the file using sp_detach_db.
July 2, 2003 at 10:09 am
Viewing 15 posts - 16 through 30 (of 181 total)