Viewing 15 posts - 11,476 through 11,490 (of 26,486 total)
Travis, This is a public and professional forum. You need to expect people to respond to your posts, even if they are directed specifically to one person. ...
June 7, 2012 at 8:56 am
Grant Fritchey (6/7/2012)
June 7, 2012 at 7:32 am
I get it, I should have used the DATE data type instead of DATETIME2 for the question so I could have left off the time portion on the answers. ...
June 7, 2012 at 5:32 am
Setup auditing on logins. This will allow you to determine if someone is logging in with the service account.
June 6, 2012 at 1:25 pm
SQLKnowItAll (6/6/2012)
Lynn Pettis (6/6/2012)
SQLKnowItAll (6/6/2012)
Lynn Pettis (6/6/2012)
I missed this one as well, no parens:exec insert_table_column 'dbo', 'test1', 'ssn', 1
hehehe... I would take then off of the join condition as well,...
June 6, 2012 at 12:46 pm
Try this:
CREATE TABLE PS_TestForOnline
(
specialty VARCHAR (50),
ref_date_Week_Comencing_Date VARCHAR (50)
);
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT INTO PS_TestForOnline
VALUES('AE' ,'2011-06-06');
INSERT...
June 6, 2012 at 12:39 pm
SQLKnowItAll (6/6/2012)
Lynn Pettis (6/6/2012)
I missed this one as well, no parens:exec insert_table_column 'dbo', 'test1', 'ssn', 1
hehehe... I would take then off of the join condition as well, it confuses me...
June 6, 2012 at 12:25 pm
j_e_o (6/6/2012)
By the way, when someone uses, :-D, they are making a light hearted jest and...
June 6, 2012 at 12:22 pm
It depends. You would need to test this for each situation. If you define a CTE and use it once in the immediately following query, then taking the...
June 6, 2012 at 12:21 pm
I missed this one as well, no parens:
exec insert_table_column 'dbo', 'test1', 'ssn', 1
June 6, 2012 at 12:14 pm
TravisDBA (6/6/2012)
That is not what I said at all or implied. Stop tag teaming.:-D
But it is. Here is the post where you said it:
TravisDBA (6/5/2012)
MdApache (6/5/2012)
June 6, 2012 at 12:09 pm
Welsh Corgi (6/6/2012)
I have used the Start & StopService method of the Win32_Service Class to do this.
I would not use...
June 6, 2012 at 12:01 pm
TravisDBA (6/6/2012)
Jeff Moden (6/6/2012)
TravisDBA (6/6/2012)
June 6, 2012 at 11:59 am
Still haven't got a real answer. Why does SQL Server need to STOP and START the windows service? What is the purpose?
June 6, 2012 at 11:52 am
sqlfriends (6/6/2012)
For now I wouldn't want to change much about it. I know they can be scheduled to run as a windows scheduler...
June 6, 2012 at 11:47 am
Viewing 15 posts - 11,476 through 11,490 (of 26,486 total)