Viewing 15 posts - 2,776 through 2,790 (of 6,036 total)
Your team has been punished for putting ANY KIND[/b] of xml in the db in the first place.
XML is another form of database.
Slower one, more resource demanding, with significant...
November 3, 2008 at 2:43 pm
clive (11/3/2008)
Hi Jeff, thanks for the excellent explanation, much appreciated. I prefer replies like these compared to the - ya perhaps, maybe, try this, depends.Regards
Kevin
When was the last time when...
November 3, 2008 at 2:05 pm
There is no way to debug an SP with any kind of debugging tools.
Unless it's purely procedural code without any attempt to access data in database.
But in this case, I...
November 3, 2008 at 12:42 pm
Edward (11/3/2008)
Hi is there a function which determines if a varchar is a number?
What kind of number?
Integer, decimal, float?
Is "$100.00-" a number for your application?
For some it is.
November 3, 2008 at 12:29 pm
You did not explain why do you need to convert COLUMNS_UPDATED() to @realUpdate.
October 31, 2008 at 5:09 pm
Why do you need to convert COLUMNS_UPDATED() to @realUpdate?
What's wrong with it as it is?
And there is an easier way to do this conversion:
SET @realUpdate = CONVERT(int, COLUMNS_UPDATED() )
But you...
October 31, 2008 at 3:47 pm
It's in connection strings for OLE DB drivers DTS uses to connect to different data sources, including SQL Server databases.
Connection string may be hadcoded in VB code, may be loaded...
October 30, 2008 at 2:02 am
You need to check all DB Connections in your DTS's.
DTS is just an application.
It may connect to whatever database it's been set to connect to.
Database has no way to know...
October 29, 2008 at 10:39 pm
You better don't.
There is no any reason why store date and time separately could be better than datetime.
If you eventually need date portion of datetime value you may use DateOnly...
October 29, 2008 at 1:55 am
There is another way to define constrains:
CREATE TABLE #Test1
(RowNum INT IDENTITY(1,1),
TypeID int,...
October 28, 2008 at 8:57 pm
Martin,
Your question has nothing to do with T-SQL.
It's a task from school math.
To find the correct answer you need:
- stop browsing Internet for it;
- take a piece of paper;
- draw...
October 27, 2008 at 10:30 pm
john.steinbeck (10/22/2008)
It sounds like your saying that my where clause was followed and SQL stopped making rows, but continued on with the query any way???
Your WHERE clause does not limit...
October 22, 2008 at 7:53 pm
Arthur.Lorenzini (10/21/2008)
They won't.
Then you have 1 to 1 relation between Customers and Addresses, so you may just repeat CustomerID as AddressID.
October 22, 2008 at 10:01 am
aravind (10/21/2008)
Can anyone help to find a best solution for this ?Thanks in advance.
I can.
Simply by opening BOL on related topic.
October 21, 2008 at 11:38 pm
What if 2 customers share the same address?
How do you manage it?
October 20, 2008 at 6:13 pm
Viewing 15 posts - 2,776 through 2,790 (of 6,036 total)