Viewing 15 posts - 31 through 45 (of 161 total)
The old forum allowed you to subscribe at a forum level and receive all posts to current and new threads.
However, the new forum...
January 7, 2004 at 5:48 am
Try this......
select isdate('29 Feb 2003') = 0 (False)
select isdate('29 Feb 2004') = 1 (True)
December 23, 2003 at 3:03 am
I have also lost the Performance Counters for SQL on one of my servers, although it was upgraded to SP3 (along with my other servers) a while ago and therefore...
November 10, 2003 at 4:53 am
1. There are no MsgBox or Input command in the script.
2. The filepath is a local path and not a network path.
More importantly, I have now found another way to...
November 6, 2003 at 1:56 am
Thanks Phill, but using Function Main() stalls the job in the same way as not using Function Main().
November 5, 2003 at 2:04 am
You will find that you cannot use the RAND function within a UDF since it is non-deterministic.
As a work around you could create a view which returns a random number...
September 19, 2003 at 9:32 am
Asking SQL to exclude certain Tables from the Transaction is unlikely to be possible.
Transaction integrity is one of the core aspect of a databases ACID compliance, it is very unlikely...
September 19, 2003 at 5:25 am
I think you will find that the ROLLBACK will also rollback anything you have written to your audit tables.
In line with the way that many other applications work, you should...
September 19, 2003 at 5:19 am
By using parameterised calls to sp_executesql, it is possible for the query optimiser to generate reusable query plans. (See BOL).
July 22, 2003 at 7:00 am
You need to look at using a dynamic SQL statement where you build the statement as a varchar (string) and then execute it.
declare @sql nvarchar(4000)
set @sql...
July 22, 2003 at 2:29 am
What security access is required for the account under which the SQL Server is running under on the server.
I am sure that many people may be using an sa account,...
July 10, 2003 at 5:50 am
Don't worry, found the answer....
select *
from openxml (@idoc, '/root/item', 3)
with (id int '@id',
item varchar(15) '.')
June 26, 2003 at 8:27 am
The correct answer states Enterprise Edition, should this not be Enterprise Manager?
June 19, 2003 at 2:06 am
Viewing 15 posts - 31 through 45 (of 161 total)