Viewing 15 posts - 6,481 through 6,495 (of 9,643 total)
Lynn,
Did you ever get this figured out? Here is a link to the command line install instructions and there is a parameter for INSTANCENAME, http://msdn.microsoft.com/en-us/library/ms144259(SQL.90).aspx
December 26, 2008 at 8:02 am
If you are managing/programming this system you should be able to figure out the solution based on the previous solution I provided. I suggest you get yourself a beginners...
December 25, 2008 at 8:54 pm
I think this meets your needs:
[font="Courier New"]SELECT
COUNT(QD.qid) AS postcount,
PD.username,
PD.laname,
PD.fname,
PD.mailid
FROM
personal_details PD JOIN
question_details QD ON
PD.username = QD.username
WHERE
EXISTS (SELECT 1 FROM account_details...
December 24, 2008 at 9:30 am
MrBaseball34 (12/24/2008)
I didn't see where you deleted the old ptAppoinment record(s)
You don't need to delete. I was getting ready to write a similar trigger to Seth's. The first...
December 24, 2008 at 9:23 am
Must be based on seniority!:D
December 24, 2008 at 7:39 am
I suggest you read this article[/url] as there are some issues with your trigger as is. The biggest being that it will not handle a set-based insert or update.
When...
December 24, 2008 at 7:28 am
McAfee AV blocks the Send Mail task as spam by default. You could check that.
December 24, 2008 at 7:22 am
I think this does want you want:
[font="Courier New"]DECLARE @myTable TABLE
(
ID INT IDENTITY(1,1),
IDEmp INT,
Start DATETIME,
Finish DATETIME
)
INSERT @myTable (IDEmp, Start, Finish) VALUES (1, '2009-01-01 00:00', '2009-01-01...
December 24, 2008 at 7:18 am
Merry Christmas to all. Enjoy the day and hopefully no ones cell phone or pager goes off for work.
December 24, 2008 at 6:44 am
If the rectangles will be variable in size then there is no way to put a divider in the middle.
December 24, 2008 at 6:05 am
Jeff Moden (12/23/2008)
andrewd.smith (12/23/2008)
DECLARE @days int
SELECT @days = 10
DECLARE @inputDate datetime
SELECT @inputDate...
December 23, 2008 at 8:06 pm
Steve Jones - Editor (12/23/2008)
I'm not sure that's asking for help. That's blatant fraud, as far as I'm concerned.
It sure is. I think a lot of resumes are like...
December 23, 2008 at 2:09 pm
Do you want to insert that row for every customer in the customers table with a match already in PS_CUST_REGN_TYPE? If this is what you want I think this...
December 23, 2008 at 2:02 pm
Try this code, please note how I took the data you provided and included it in a way that can be used by others as well:
[font="Courier New"]-- test table to...
December 23, 2008 at 1:57 pm
Okay the issue with my code is that I am including Requested Date as one of the business days. The Between 5 and 7 basically says I need to...
December 23, 2008 at 1:37 pm
Viewing 15 posts - 6,481 through 6,495 (of 9,643 total)