Viewing 15 posts - 1,111 through 1,125 (of 1,413 total)
quote:
- chrhedga's idea cannot be implemented as the query is being generated in a coldfusion page- ans the '03/26/2003' value comes in...
March 27, 2003 at 1:26 am
Why do you absolutely want to do this with a function? Is it not possible to do it within a stored procedure?
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
March 27, 2003 at 1:17 am
Rows in SQL Server can never contain more than 8060 bytes (even slightly less in some cases). This means that if you have multiple columns with a definition such as...
March 27, 2003 at 1:09 am
Although this was tested on SQL 2000, I think it will work on SQL 7 (don't have one here to test with):
select * from orders
where orderdate between '1996-07-19 00:00:00.000' AND...
March 26, 2003 at 2:35 pm
Yep, as I said, if they use the same data, then they could have a common database (for this data that is shared between them).
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
March 26, 2003 at 2:26 pm
To me this is a matter of data, I mean does your apps use the same data, then they should use the same database. Way too many people see a...
March 26, 2003 at 1:39 pm
I don't think you will find a good non-biased comparison of them. However, if you're just looking for numbers check out NetApp's SQL Server white papers and case studies (http://www.netapp.com/partners/microsoft/sql_server.html).
--
Chris...
March 26, 2003 at 1:29 pm
Kathi, the reason for this is that the Slammer worm exploits a buffer overflow in the SQL Server listener service that listens on port 1434. This service only exists in...
March 26, 2003 at 1:23 pm
March 26, 2003 at 1:20 pm
Tim's right, using the recordset.Open method with a command object as the first parameter will let you first create and explicitly state values for CursorType, location etc. Here's a small...
March 26, 2003 at 11:29 am
quote:
Is it possible to configure the ASP interpreter differently from the regional settings in the OS?
March 26, 2003 at 11:24 am
If you're using SQL Server OLE DB provider for a DSN-less connection you can specify protocol (TCP/IP in this case) like this:
conn.ConnectionString = "Provider=SQLOLEDB;Data Source=SERVERNAME;Initial Catalog=DATABASENAME;Network Protocol=DBNETLIB;Network Address=192.168.0.1,1433"
--
Chris Hedgate @...
March 26, 2003 at 6:50 am
SQLBill, Dig, and everyone. Just to make sure I understand dig correct, and if I do make sure all you others also understand the problem this way. As I understand...
March 26, 2003 at 6:47 am
quote:
Do people think SQL Server should offer a finer granularity of security for IP connections
I...
March 26, 2003 at 6:12 am
March 26, 2003 at 6:08 am
Viewing 15 posts - 1,111 through 1,125 (of 1,413 total)