Viewing 15 posts - 11,926 through 11,940 (of 26,486 total)
sunny.tjk (5/16/2012)
Can I use the following script to change the max server memory from 24GB to 45GB?EXEC sp_configure 'Show Advanced Options', 1
GO
RECONFIGURE
GO
EXEC sp_configure
Go
EXEC sp_configure 'max server memory (MB)', 45000
GO
RECONFIGURE
GO
Probably, I'd...
May 16, 2012 at 1:26 pm
Koen Verbeeck (5/16/2012)
May 16, 2012 at 12:53 pm
Koen Verbeeck (5/16/2012)
MisLead (5/16/2012)
Lynn Pettis (5/15/2012)
Are you trying to move the sorting of the result set from the server to the client? How big is the result set?
Lynn,
Actually I...
May 16, 2012 at 12:46 pm
Sounds like parameter sniffing. I don't have the links handy, so you will need to try searching this site with those keywords. Or, hopefully, someone with the links...
May 16, 2012 at 12:42 pm
You actually need to use a left outer join and deal with a null value. It would help if you could post the CREATE TABLE statement, some sample data...
May 16, 2012 at 12:40 pm
I'd still use the TIME data type. If you do have hours that go from 20:00 to 05:00, I would deal with that in code. If all you...
May 16, 2012 at 12:31 pm
Here is my solution. Give it a test. Oh, with the values given by the OP, I get 12:03 not 12:07.
DECLARE @StartDate DATETIME,
...
May 16, 2012 at 12:26 pm
megan_c99 (5/16/2012)
I'm working on a project that requires us to store an employee's work schedule.
For example our company allows the following work schedules:
8:00 a.m. to 5:00 p.m.
8:30 a.m....
May 16, 2012 at 12:02 pm
CELKO (5/16/2012)
Gee, ANSI/ISO Standards, etc are "high horse" to you? Does that say a lot about your professionalism and expertise...
May 16, 2012 at 11:48 am
Once you have the elpased time in minutes, the following will format it to HH:MM. This code assumes a positive elpased time. If the computation can go backwards,...
May 16, 2012 at 11:32 am
TravisDBA (5/16/2012)
Lynn Pettis (5/16/2012)
TravisDBA (5/16/2012)
May 16, 2012 at 11:24 am
TravisDBA (5/16/2012)
May 16, 2012 at 11:08 am
saidapurs (5/16/2012)
I apriciate your responce & i agree with you but issue is i am not yet wrote any SP in my life. so while...
May 16, 2012 at 10:14 am
james.jensen1350 (5/16/2012)
However, I did just now try a FULL OUTER join and moved the condition in the...
May 16, 2012 at 10:03 am
james.jensen1350 (5/16/2012)
t1 (dow smallint)
t2 (custId int, dow smallint, data1 varchar(128), data2 float)
I then insert 7 records into t1, one for each day of the week (1-7).
Now, I...
May 16, 2012 at 9:46 am
Viewing 15 posts - 11,926 through 11,940 (of 26,486 total)