Viewing 15 posts - 7,921 through 7,935 (of 26,490 total)
DBA12345 (4/17/2013)
for the belwo proc few folks in this same forum suggesting me...
April 17, 2013 at 1:38 pm
Brandie Tarvin (4/17/2013)
What...
April 17, 2013 at 12:27 pm
Steve Jones - SSC Editor (4/17/2013)
Peter Schott (4/17/2013)
fundpc (4/16/2013)
April 17, 2013 at 12:00 pm
Not sure what you are expecting but running the following all I see in the output is 1:00 PM to 2:00 PM which corresponds to the LunchStart and LunchEnd for...
April 17, 2013 at 11:15 am
Unfortunately, without seeing the the DDL for the view and the underlying table(s) and their indexes, plus how the view is being called I don't see how much more we...
April 17, 2013 at 10:24 am
Pardon my ignorance but, what does the % 7 do in the DATEADD(day, 6 - DATEDIFF(day, 6, ApptDt2) % 7, ApptDt2)?
In this case the % is the modulo operator. ...
April 17, 2013 at 9:42 am
Cadavre (4/17/2013)
Lynn Pettis (4/17/2013)
April 17, 2013 at 9:30 am
abhas (4/17/2013)
can u pls send sample code?
Sure, once you post your code. Of course once you do that we may ask for more, but it is a start.
April 17, 2013 at 9:28 am
jhager (4/17/2013)
I appreciate the response, though.
~...
April 17, 2013 at 9:26 am
The following is from MSDN for SQL Server 2012. Please read the information at the top of the page.
http://msdn.microsoft.com/en-us/library/ms151718.aspx
I just want you to be aware that this feature is...
April 17, 2013 at 6:56 am
Cadavre (4/17/2013)
Try something like this: -
IF OBJECT_ID('abc') IS NOT...
April 17, 2013 at 6:49 am
I had a copy/paste issue, here is updated code:
CREATE TABLE abc
(gg_key int,
fg_sta_key int,
fg_eff_dt_key int,
fg_end_dt_key int,
fg_seq_nbr int)
insert into abc values(19925,2,20130128,20130128,1)
insert into abc values (19925,8,20130128,20130128,2)
insert into abc values(19925,1,20130129,20130416,3)
insert into abc values...
April 17, 2013 at 6:46 am
jhager (4/17/2013)
exec mt_amstask7 'AMS','78609072','1045458320','20130417 05:05','AMH','20130417 05:07','U'
exec mt_amstask7 'AMS','78609072','1045458304','20130417 05:05','AMH','20130417 05:07','U'
exec mt_amstask7 'AMS','78609072','1045458320','20130417 05:05','AMH','20130417...
April 17, 2013 at 6:37 am
Here is your sample data and some code. You tell us what the problem is:
CREATE TABLE abc
(gg_key int,
fg_sta_key int,
fg_eff_dt_key int,
fg_end_dt_key int,
fg_seq_nbr int)
insert into abc values(19925,2,20130128,20130128,1)
insert into abc values...
April 17, 2013 at 6:33 am
Viewing 15 posts - 7,921 through 7,935 (of 26,490 total)