Viewing 15 posts - 1,921 through 1,935 (of 2,452 total)
weston_086 (3/5/2012)
March 5, 2012 at 11:50 pm
weston_086 (3/5/2012)
CREATE TABLE dt3
(
dates DATETIME,
workday ...
March 5, 2012 at 2:35 pm
weston_086 (3/5/2012)
i want the result in this wayinsert into dt3 values(2012-03-04,'N','4','21','62','251'),
(2012-03-03,'N','4,'21','62','251')
to clarify
this is your "table"
CREATE TABLE dt3
(
dates ...
March 5, 2012 at 12:58 pm
Hi
not sure about your requirements...are you looking to build a "calendar" table?
March 5, 2012 at 12:02 pm
Dani_87 (3/4/2012)
This is my table
PERSON_IDYEARTERMBANKPAYRATING
1020076NABCASHB
1020077NABCredit G
...
March 5, 2012 at 6:39 am
chandarcst (3/5/2012)
HiI asked you Send the standard sql tutorial links suppose if you have.
http://msdn.microsoft.com/en-us/library/ms203721(v=sql.90).aspx
March 5, 2012 at 5:09 am
March 4, 2012 at 6:56 am
assefam (3/4/2012)
The orginal value is
PKC1 C2 C3 ...
March 4, 2012 at 6:21 am
abhilasht (3/4/2012)
Here i created one sample periods #period table. and come one more issue to find the available periods. So it...
March 4, 2012 at 5:47 am
abhilasht (3/4/2012)
CREATE TABLE #Sales (SalesDate smalldatetime,Customer int,Sales decimal(20,4))
INSERT INTO #Sales Values ('2011/11/01',1,10)
INSERT INTO #Sales Values ('2011/11/02',1,10)
INSERT INTO #Sales Values ('2011/05/02',2,25)
INSERT INTO #Sales Values ('2011/12/01',2,20)
INSERT INTO #Sales...
March 4, 2012 at 12:45 am
R.P.Rozema (3/3/2012)
March 3, 2012 at 11:06 am
siva 20997 (3/3/2012)
hence I just touched upon the subjects which is needed to be understood to...
March 3, 2012 at 10:19 am
Shree-903371 (3/2/2012)
The problem is we are not allowed to use open queries in out campany.
does the following give any more ideas?
USE [tempdb]
GO
IF EXISTS (SELECT * FROM sys.objects WHERE object_id...
March 3, 2012 at 9:11 am
Shree-903371 (3/2/2012)
I just gave an example. The months might be changing. So i was looking any dynamically arranging it.
Hehe...thought so, sorry.
anyways....please read this post/thread....http://www.sqlservercentral.com/Forums/FindPost1223418.aspx by Jeff Moden
will give you...
March 2, 2012 at 1:04 pm
not sure if this is what you are really asking for....maybe something more dynamic perhaps
but this answers your question 🙂
CREATE TABLE #Sales (SalesDate smalldatetime,Customer int,Sales decimal(20,4))
INSERT INTO #Sales Values ('2011/11/01',1,10)...
March 2, 2012 at 12:49 pm
Viewing 15 posts - 1,921 through 1,935 (of 2,452 total)