Viewing 15 posts - 901 through 915 (of 3,011 total)
ramadesai108 (4/20/2011)
I have a date in the following format, how do I convert it to standard date format:2011-03-01 13:10:29.817
Thanks.
What is not "standard" about that date format?
April 20, 2011 at 10:47 am
All built-in string functions are deterministic, including PATINDEX and CHARINDEX.
String Functions (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ms181984(v=SQL.90).aspx
April 19, 2011 at 9:07 am
That SSCrazy guy really seems to know his stuff.
April 18, 2011 at 1:00 pm
Your error is very simple: You cannot use an expression as a parameter of a stored procedure
Change this:
exec sp_getezquerylist 'DO' + CHAR(39) + 'SULLIVAN', 'n', '100'
to this:
declare @@sUser as nchar(500)
set...
April 18, 2011 at 10:32 am
Use a case expression to filter the results; evaluation of the case conditions ends with the first true condition and avoids the conversion errors.
declare @tmp table (field8 varchar(20)) ;
insert ...
April 17, 2011 at 12:21 am
ashevis (4/15/2011)
...Michael, isn't the point of the AWE switch in SQL to allow it to access memory beyond 4gb when the OS is restricted to 4gb?...
From SQL Server 2005 Books...
April 16, 2011 at 12:48 am
You can only access more than 4 GB of memory under Windows 32-bit if you have Windows Enterprise Edition.
April 15, 2011 at 3:13 pm
Break it out into normal entities:
User
Course
CourseLession
CourseTest
UserCourseLession
UserCourseTest
April 15, 2011 at 12:50 pm
I use the SQLPing 3.0 tool to look for server instances.
http://www.sqlsecurity.com/Tools/FreeTools/tabid/65/Default.aspx
April 15, 2011 at 10:09 am
Roger Abram (4/14/2011)
April 14, 2011 at 7:40 am
If you think there may be IO problems, I would say to run it, but only with SQL Server shutdown.
I usually run SQLIO before putting it into production, and save...
April 13, 2011 at 2:35 pm
Get Server Database File Information
April 13, 2011 at 2:27 pm
mtillman-921105 (4/13/2011)
Craig Farrell (4/13/2011)You're thinking of the Komodo Dragon.
Craig, you're probably right! Then it was my fault, not the documentary's. I should have looked it up before relying...
April 13, 2011 at 2:24 pm
Does this topic have a purpose?
Anyway, I think Gila Monsters are warm and cuddly.
April 13, 2011 at 2:03 pm
Dan.Humphries (4/13/2011)
April 13, 2011 at 1:55 pm
Viewing 15 posts - 901 through 915 (of 3,011 total)