Viewing 15 posts - 6,391 through 6,405 (of 6,678 total)
Matt Miller (7/7/2008)
Giya (7/7/2008)
The user is choosing the date range from calendar control and it displays in mm/dd/yyyy format as 06/01/2008. Is there any way around?
If you pass this stuff...
July 7, 2008 at 3:26 pm
tbeadle (7/7/2008)
When requesting a date range, one must remember the time part of the date.
So whenever requesting a date range use code like this :
select *
from tablexyz
...
July 7, 2008 at 3:06 pm
I am surprised that no one has mentioned this, but there is another option. It does require a downtime, but may not take as long as using a defrag...
July 7, 2008 at 2:42 pm
R L Reid (7/7/2008)
And...
July 7, 2008 at 1:16 pm
The only thing I can think of is that maybe you have SQL Server setup in the cluster group on that server instead of in the SQL group.
July 6, 2008 at 8:49 pm
pradeepkk2003 (7/6/2008)
I am new to this so need some expert guidance. In one of my datetime field data is stored in the format
yyyy-mm-dd hh:min:sec.
I am trying to retrieve the...
July 6, 2008 at 6:39 pm
CU = Cumulative update. This is a rollup of all of the post SP2 hot fixes that are available. There is also CU7 that is available.
Unless there is...
July 6, 2008 at 3:06 pm
Maybe you can adapt the following to work for you.
If object_id('tempdb..#test') Is Not Null
Begin;
Drop Table #test;
End;
Go
Create Table #test (Sr1 int, Col1 char(8), Col2 int, Col3 char(6));
Go
Insert Into #test (Sr1, Col1,...
July 6, 2008 at 2:20 pm
What are the expected results you are looking for?
Please read the following article:
Best Practices: http://www.sqlservercentral.com/articles/Best+Practices/61537/
If you provide the create and insert statement and expected results, it will be a...
July 6, 2008 at 12:34 pm
What version is the server running, and what version are your client tools on? If you are not on at least 9.0.3054 for both - then you will have...
July 6, 2008 at 11:27 am
Well, the first thing you need to do is identify how you will determine whether or not your table has a new row (inserted).
Do you have any date columns on...
July 6, 2008 at 11:23 am
In SSMS, connect to the server using Object Explorer - right-click the server name and select properties. Select Memory and you can change it there.
From a query, you can...
July 5, 2008 at 11:38 am
To add to what Carl has given you, I would recommend setting the max memory for no more than 20GB (leave 4GB for the OS) and set the min memory...
July 5, 2008 at 10:30 am
Yes you are right - 0 and 100 are exactly the same. I thought I had read where 0 would actually leave a small amount of space, but I...
July 3, 2008 at 1:44 pm
Congratulations Jeff and Michael - well deserved.
July 1, 2008 at 10:53 pm
Viewing 15 posts - 6,391 through 6,405 (of 6,678 total)