Viewing 15 posts - 2,521 through 2,535 (of 7,502 total)
What's wrong with:
/* day 2 of the current month 00:00:00.000 */
select dateadd(dd,1,dateadd(mm, datediff(mm, 0, getdate()), 0))
/* if you need day 2 12 noon */
select dateadd(hh,36,dateadd(mm, datediff(mm, 0, getdate()), 0))...
December 29, 2010 at 8:38 am
IMO aligned indexes provide both performance and recovery advantages:
- performance: because the are physically split like their corresponding table, so the engine will only use the part needed by the...
December 28, 2010 at 3:32 pm
you can use
return(@yourcode)
to provide an exit code for your sproc.
in your app you can capture this value using the first parameter @return_value.
e.g.
If sqlcmd.Parameters("@RETURN_VALUE").Value.ToString = "0" Then
'.....
...
December 28, 2010 at 3:21 pm
Please use the datetime data type when working with datetime info, so you don't have to bother about formating and have all wonderful datetime related functions available.
Have a look at...
December 28, 2010 at 12:42 pm
As Ray Mond stated, to restore a db, you'll need free space at least equal to the size of the database files at backup time.
If your bak file contains...
December 28, 2010 at 4:32 am
Be sure to start off with all columns you need in your data system.
e.g. maybe it's better to add birth date to your users table and calculate age yourself (inline...
December 27, 2010 at 8:16 am
just the refs of some interesting articles on data analysis (DA) and normalization:
http://www.sqlservercentral.com/blogs/abhijit_desai/archive/2010/09/07/noramlization.aspx
http://www.sqlservercentral.com/articles/Advanced/coddsrules/1208/
December 27, 2010 at 8:08 am
Just a first thought.
Why is userid the pk of your fitnessdetails entity ?
Can a user only have a single fitness detail ?
IMO a user can change bodiweight and bmr over...
December 26, 2010 at 8:22 am
And this is soon:
Here is Cumulative update 1: support.microsoft.com/kb/2464079
December 26, 2010 at 12:11 am
Brent Ozar did a very good job highlighting the goals:
First make sure, your goal matches that of the software users managers.
December 23, 2010 at 1:28 pm
Had my first holidays day off today:
- already boiled an egg
- cooked rice, carrots and sausages
If I would project this experience to most companies IT level, I guess...
December 22, 2010 at 10:47 am
WayneS (12/21/2010)
ALZDBA (12/20/2010)
- New project on a new folder generates "creating project failed"
- opening an existing sql2008...
December 21, 2010 at 3:29 pm
goodyes (12/21/2010)
put the previous sugestion in a single transaction, so others cannot insert invalid data
I don't understand you. What do you mean ..
Just put the reply stewartc-708166 provided within at...
December 21, 2010 at 3:23 pm
pavargasq (12/21/2010)
i have a question
usually processes,likE DTS, or procedures are run in the application server NAMED ie SERVER1, USING REMOTE DESKTOP AND RUN THE PROCESSES USING SSMO.
SSMO is also...
December 21, 2010 at 3:15 pm
Viewing 15 posts - 2,521 through 2,535 (of 7,502 total)