Viewing 15 posts - 1,141 through 1,155 (of 6,486 total)
SQL_By_Chance (10/10/2011)
I think if you check table properties it does show index usage space on the disk meaning there by a physical storage for indexes.
sure. things get stored physically on...
October 10, 2011 at 12:00 pm
sqlzealot-81 (10/10/2011)
October 10, 2011 at 8:01 am
bradmcgehee@hotmail.com (10/3/2011)
October 3, 2011 at 3:26 pm
@@datefirst uses the language settings to determine what the customary first day of the week is. Simply changing the language setting (or having it be different in your connection...
October 3, 2011 at 12:42 pm
djackson 22568 (9/22/2011)
September 22, 2011 at 10:16 am
Then Create a view on the table which looks something like
select (nz(ColumnA,"")="") as NoValueA, (nz(ColumnB,"")="") as NoValueB, (nz(ColumnC,"")="") as NoValueC, (nz(ColumnD,"")="") as NoValueD from MyTable
Then your Truth table is...
September 21, 2011 at 7:48 pm
Your example was showing duplicated combinations, so the ranking would have been there to "break the tie"
To get the result in using a table - join your original table to...
September 21, 2011 at 11:08 am
Why not create the actual truth table as a table? You're in a database, tables is something it understands.
just make a table with 6 columns:
RuleRank,
ValueA,
ValueB,
ValueC,
ValueD,
Result
And join to it....
September 21, 2011 at 9:37 am
(: Hakuna Matata 🙂 (9/21/2011)
Gianluca Sartori (9/21/2011)
(: Hakuna Matata 🙂 (9/21/2011)
September 21, 2011 at 9:31 am
he's advocating changes the stored procedure to handle the problem as a set rather than one "seeding row" at a time. So rather than looping through and calling for...
September 21, 2011 at 9:27 am
Also - keep in mind that switching the compatibility back to 2000 doesn't turn the DB into a SQL 2000 DB. If you have new data types in place...
September 20, 2011 at 2:17 pm
iposner (9/19/2011)
Colin Barry (9/19/2011)
Why have a service issue the GUIDs? A small bit of clr code could do what you need and would be fast. You could then let...
September 19, 2011 at 9:21 am
Why not implement a CLR function to evaluate this? Give it a formula, and it returns the value (cast into some standard type). CLR will give you a...
September 16, 2011 at 10:03 am
IceDread (9/13/2011)
Jeff Moden (9/13/2011)
September 13, 2011 at 10:43 am
You are oging to need to use subqueries to format the XML the way you want it.
The query would look something like:
SELECT Sales.SalesOrderHeader.salesorderid,
Sales.SalesOrderHeader.CustomerID,
Sales.SalesOrderHeader.OrderDate,
Sales.SalesOrderHeader.DueDate,
Sales.SalesOrderHeader.ShipDate,
Sales.SalesOrderHeader.Status,
(SELECT Sales.SalesOrderDetail.ProductID
from Sales.SalesOrderDetail
where...
September 13, 2011 at 10:31 am
Viewing 15 posts - 1,141 through 1,155 (of 6,486 total)