Viewing 15 posts - 376 through 390 (of 790 total)
Post the structure of the table and some sample data and how do you want to see your data !
Hope that we will help you faster!
Dugi
March 6, 2009 at 7:43 am
Too many things positive or negative:
22 work days - Saturday and Sunday is day off
18 day holiday in year
15 day sick in year
Money or budget for any certification...
March 6, 2009 at 5:29 am
Mangal9i (3/6/2009)
Try this... I guess very easy to understand and modify as well 🙂
;WITH Mangal as
(
SELECT Dateadd(yy,datediff(yy,0,getdate())-4,0) Date --Start Date,5 years including current
UNION ALL
SELECT dateadd(dd,1,date)
FROM Mangal
WHERE Date + 1 <...
March 6, 2009 at 4:59 am
Steve plz close this thread because the replies are active in this thread!
March 6, 2009 at 3:43 am
manju_gallivant (3/6/2009)
I have a subquery which would return multiple records.
I need to update another table with these multiple records.
Say table has Name, age, birthdate etc .. as columns
and .....
March 6, 2009 at 1:56 am
Ok! I just notice that we can discuss in one thread no replies in both threads so one of them we must consider as closed and someone from moderators will...
March 6, 2009 at 1:39 am
Please don't do double posts all replies should be here ....the active replies are here so we are continuing here...
:w00t:
March 6, 2009 at 1:21 am
florian.reischl (3/5/2009)
DECLARE @datesum TABLE (id tinyint, name VARCHAR(25),sdate DATETIME, edate DATETIME )
INSERT INTO @datesum
SELECT 1,'TestName1','2004-01-25','2005-02-06'
UNION ALL
SELECT 2,'TestName1','2003-07-20','2005-03-18'
UNION ALL
SELECT 3,'TestName1','2002-12-24','2004-03-21'
UNION ALL
SELECT 4,'TestName1','2001-10-27','2003-03-03'
SELECT SUM(DATEDIFF(DAY, sdate, edate))...
March 5, 2009 at 7:41 am
MANU (3/5/2009)
Don't forget to check Books online(installed with sql server installation).MJ
Yep that's right MJ even that BOL has toooo much information about every detail, better to start from here in...
March 5, 2009 at 6:54 am
doca (3/5/2009)
i get this errorSystem.Data.SqlClient.SqlError: The operating system returned the error '5' while attempting 'RestoreContainer::ValidateTargetForCreation' on '(Microsoft.SqlServer.Express.Smo)
bak is comin another computer same version
It seems that the account used to...
March 5, 2009 at 6:07 am
...and if you have again the question about SQL Server Express you can start thread here
March 5, 2009 at 6:02 am
It wouldn't be any problem for upgrade or to change the trial version to standard or enterprise, just if the key is illegally sure that you cannot do such a...
March 5, 2009 at 6:01 am
doca (3/5/2009)
Im takin error when i restore my .bak file to my database it becomes
TITLE: Microsoft SQL Server Management Studio Express
------------------------------
Restore failed for Server 'PERFECTPC\SQLEXPRESS'. (Microsoft.SqlServer.Express.Smo)
How can i resolve...
March 5, 2009 at 5:57 am
Please read carefully in the article in my sig and post the structure of you table and some sample data if you want to find the correct solution!
March 5, 2009 at 5:53 am
v-makath (3/5/2009)
Thanks for the reply.But i could not find more video tutorials in the given website
Why you can not find...click here
March 5, 2009 at 3:00 am
Viewing 15 posts - 376 through 390 (of 790 total)