Viewing 15 posts - 9,226 through 9,240 (of 26,490 total)
asranantha (12/2/2012)
k i got it
Are you sure? Post the code with your changes.
December 2, 2012 at 10:42 pm
Looks like it is coming down to Monday Night Footaball to determine who moves on to the championships.
December 2, 2012 at 10:39 pm
asranantha (12/2/2012)
December 2, 2012 at 11:02 am
asranantha (12/2/2012)
table data contins like id,name,sal
...
December 2, 2012 at 9:54 am
Another question, startdate is 2012-12-02 (a Sunday) and you add 1 day, do you want 2012-12-03 or 2012-12-04? What if you add 0 days to the same date? ...
December 2, 2012 at 8:54 am
As I think about this more, your apparent requirement is that everytime you cross Sunday you need to add an additional day, correct?
Example, if the startdate is 2012-11-30 (a Friday)...
December 2, 2012 at 8:40 am
Lynn Pettis (12/2/2012)
kapil_kk (12/2/2012)
the script you have written is not satisfy the scenario that i wrote..
You are going to have to tell me more than that it doesn't work. ...
December 2, 2012 at 8:34 am
kapil_kk (12/2/2012)
the script you have written is not satisfy the scenario that i wrote..
You are going to have to tell me more than that it doesn't work. If I...
December 2, 2012 at 8:21 am
I still like mine, just had to modify the partition by clause. I believe this is also one that Paul White post.
CREATE TABLE [REV_BINDERS](
[OFFICE_ID] [int] NOT NULL,
[BINDER_ID] [int] NOT...
December 2, 2012 at 8:17 am
The two default instances can use the same port value for database mirroring. The named instance on the second system has to use a different port since it is...
December 2, 2012 at 8:12 am
Based on the original post, I'm thinking you want something like this:
declare @TestDate date = '20120101',
@DaysToAdd int = 8;
select
...
December 1, 2012 at 9:30 pm
CELKO (12/1/2012)
to add comma as the thousand separator
NO! Display formatting is done in the presentation layers of any tiered architecture. The proprietary MONEY data type is left-over...
December 1, 2012 at 9:16 pm
I'm not quite sure what you are asking for here. Are you trying to add 30 days to a given date such that you get a date x days...
December 1, 2012 at 9:14 pm
karthik M (12/1/2012)
I have recently faced the below scenario.
i.e to add comma as the thousand seperator
I have searched here and found the below query
select convert(varchar,cast(12345678918 as money),1)
how this query is...
December 1, 2012 at 9:01 pm
Knowing that one system has one instance of SQL Server installed (default instance?) and another has two instances installed (a default and a named instance?), we now need to know...
December 1, 2012 at 6:04 pm
Viewing 15 posts - 9,226 through 9,240 (of 26,490 total)