Viewing 15 posts - 9,631 through 9,645 (of 15,381 total)
Great question Wayne. I knew the page would not be deallocated but I didn't know all of the details. The article was very interesting and informative read.
I wonder if Celko...
January 15, 2013 at 8:50 am
opc.three (1/15/2013)
January 15, 2013 at 8:32 am
Actually I wanna convey SMS from my database through mobile operator. That's why I want to insert data in my convenient format. If I use char(13) + char(10), it will...
January 15, 2013 at 8:25 am
Storing the results in sql is fine but the process you are describing is an application. Yes you can probably find a way to make this work but that doesn't...
January 14, 2013 at 2:12 pm
This is somewhat of a shot in the dark because we don't have ddl or sample data to work with.
SELECT
A.ConsInvNumber AS [Consolidated...
January 14, 2013 at 12:33 pm
Ed Wagner (1/14/2013)
Also, you cannot have an ORDER BY clause in a view. SQL 2000 tolerated it but the...
January 14, 2013 at 12:24 pm
Yeah read that article and then the code is pretty simple.
;with cte (ID, Well_id, Figure) as
(
select 1, 20, '1 2a 5 6' union all
select 2, 22, '3 4 22a'
)
select ID,...
January 14, 2013 at 12:20 pm
That is a pretty good idea Lowell. I have rolled my own IsValidEmail using regex but I know it is not as robust as the .NET MailAddress object. I have...
January 14, 2013 at 9:27 am
Can you use CLR? RegEx tends to be far easier to implement in C# than in pure t-sql. There are certainly some pattern matching techniques for some basics but I...
January 14, 2013 at 9:21 am
For an in-depth look at ranking functions check out BOL. http://msdn.microsoft.com/en-us/library/ms173454.aspx
January 14, 2013 at 8:34 am
Excellent job posting ddl and sample data. Now what is the question?
January 14, 2013 at 8:28 am
shohelr2003 (1/14/2013)
I want to insert multiple lines in a single row in SQL Server 2008 R2. I have tried. But it's not working. A table has only one column and...
January 14, 2013 at 8:13 am
briancampbellmcad (1/14/2013)
Anyone see a problem with this trigger?, rather complex, but the issue may be in the logic of:"WHERE INSERTED.Transaction_Type = 'Transfer' and INSERTED.TransferToCostCenter <> INSERTED.TransferFromCostCenter"
Full SQL below:
Syntactically there...
January 14, 2013 at 8:03 am
Can you post the ddl and all indexes as well as actual execution plans? Without those details we are shooting in the dark.
Take a look at Gail's post about details...
January 11, 2013 at 2:40 pm
Roland Alexander STL (1/11/2013)
January 11, 2013 at 1:12 pm
Viewing 15 posts - 9,631 through 9,645 (of 15,381 total)