Viewing 15 posts - 571 through 585 (of 5,356 total)
Hehe, this CAST('' AS DATETIME) is a funny annoying feature of SQL Server.
I've described this here http://www.sql-server-performance.com/fk_datetime2.asp
April 14, 2005 at 2:23 am
Should be not too bad. Don't know if this is readily available, but the forum component (php, but that doesn't matter) I use for my site, offers such a functionality.
May...
April 14, 2005 at 1:11 am
Man, you're asking a lot of *very* broad questions. Don't you think it is better, to surf the homepages of the RDBMS you're interested in?
It is better to read...
April 14, 2005 at 1:05 am
Platform is usually the OS a database server runs on. It's quite self-explaining that SQL Server runs only on Windows platforms, while Oracle supports some others, too.
April 14, 2005 at 1:00 am
Thanks, Michael!
And Remi, . At times the distinction between a primate and a human is nothing but a thin flowing line. And that not only...
April 14, 2005 at 12:49 am
This is the link to SQL Server's Books Online. http://www.microsoft.com/downloads/details.aspx?FamilyID=a6f79cb1-a420-445f-8a4b-bd77a7da194b&displaylang=en
It's a free download from Microsoft and covers all you need. What about starting there?
April 14, 2005 at 12:40 am
BOL is the short form of Books Online and is commonly used when one refers to SQL Server's online help. Unlike other product manuals, BOL is always the first place to...
April 14, 2005 at 12:30 am
SET NOCOUNT ON/OFF is explained in SQL Server's online help (BOL).
I actually misplaced it in my example. It should almost always be among the first and last statement in...
April 13, 2005 at 5:43 am
I see...
Is this better?
set nocount on
create table company1
(
prodID int primary key
, prod varchar(10)
, sale int
)
create table company2
(
prodID int primary key
, prod varchar(10)
, sale int
)
create table company3
(
prodID int primary...
April 13, 2005 at 4:37 am
Sury, you can use GETDATE()-182 like this
SELECT getdate() - 182
------------------------------------------------------
2004-10-13 11:30:05.233
(1 row(s) affected)
Since SQL Server's base date unit is a day, this will work. However, note that 6...
April 13, 2005 at 3:49 am
http://www.wiscorp.com/SQLStandards.html
http://www.service-architecture.com/ordbms/
IIRC, neither Oracle nor SQL Server fully adhere to any SQL standard.
Here's a research paper on compliance of DB2, Oracle and SQL Server with Codd's 12 rules:
April 13, 2005 at 1:26 am
Indexing is sometimes more of an art than a science
I would start by using the Index Tuning Wizard and then go from there....
April 13, 2005 at 1:21 am
Good point. I was implying that there are no future dates.
April 13, 2005 at 1:18 am
Viewing 15 posts - 571 through 585 (of 5,356 total)