Viewing 15 posts - 616 through 630 (of 700 total)
Robert: the [1] is required, the Pragmatics would call it RTFM.
The xquery.value() function requires a singleton result. Even though, in this case, leaving...
May 17, 2006 at 10:35 am
Japanese time does not have AM and PM; it's a 24-hour clock.
Instead of 5:27pm, use 17:27.
12:00 am = 0:00
6:00 am = 6:00
12:00 pm = 12:00
6:00 pm = 18:00
-Eddie
May 17, 2006 at 10:12 am
For the second question, the CONVERT function can format dates. See BOL for all the different options.
To format a date as yyyy/mm/dd, use CONVERT(char(10), DateToFormat, 111)
May 17, 2006 at 10:05 am
http://www.microsoft.com/sql/howtobuy/default.mspx
I posted some more info here:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=276890#bm277331
The client may be installed on anywhere that is licensed to access SQL Server, either because:
1. the SQL Server was licensed with the per-processor...
May 11, 2006 at 7:13 am
If you are properly versioning scripts (each object as a script file), then those scripts should be built using IF EXISTS...DROP / CREATE.
The object must be CREATEd before it can...
May 8, 2006 at 10:15 pm
Here's something to consider: Order the EntityAddress table by the order of the classification IDs you wish to check (ID = 2 first, ID = 4 second, etc.) and pull the TOP...
May 7, 2006 at 8:10 pm
Christopher: close interpretation of EXEC, but the requirement to use EXEC/EXECUTE is when there is more than one statement (the procedure call) in a batch. You have to use EXEC...
May 7, 2006 at 7:04 pm
To move a table from one filegroup to another, re-create the clustered index on the target filegroup:
-- SQL 2000 syntax: CREATE CLUSTERED INDEX [name] ON [table](column, column, ...)
May 7, 2006 at 6:53 pm
If the Details table is usually accessed this way, I'd try changing the clustered index to MasterID, Value. If that isn't your primary key on that table (such as if...
May 4, 2006 at 11:13 am
Reports are coming in from people who took 71-442 at VUE centers are starting to get results. However, no results have been reported to those who took the test at...
May 3, 2006 at 12:52 pm
If the purpose of this test server will be to decide if SQL Server will be used at all, then SQL Server is being evaluated, and the eval edition is appropriate.
However, if...
May 3, 2006 at 12:48 pm
http://www.microsoft.com/sql/howtobuy/default.mspx
You do not license connections to SQL Server. You license either (for SQL Server - the Win2003 license is separate and unrelated):
1. Per processor for unlimited clients from unlimited devices
-...
May 3, 2006 at 12:18 pm
The eval version is not licensed for any purpose other than evaluation of the product. If you are testing your code before it moves to a production SQL Server, then...
May 3, 2006 at 12:13 pm
I haven't, and none of the other folks I know who took have, either.
It hasn't even been 2 months since the beta period closed. Give a few more weeks.
I'll...
April 26, 2006 at 12:22 am
Developer Edition is a license for a single user. If multiple users will be testing against the test server, they each will need a Dev Edition license.
There is no distinction...
April 25, 2006 at 11:49 pm
Viewing 15 posts - 616 through 630 (of 700 total)