Viewing 15 posts - 8,566 through 8,580 (of 15,381 total)
Now that I am at my desk I tested some stuff with your functions and I can't reproduce the issues you are seeing.
I did however make some adjustments to your...
April 23, 2013 at 7:56 am
$w@t (4/22/2013)
thanku all, can you explain me usage of cursors? in Which type of scenarios we use cursors?
For maintenance tasks that require looking at all tables or maybe even all...
April 23, 2013 at 7:25 am
$w@t (4/22/2013)
Can any one explain me What is the difference between Cursor and While Loop? I have read about two concepts but end up with confusion..Which...
April 22, 2013 at 10:49 pm
autoexcrement (4/22/2013)
CREATE TABLE testfunc (checkdate datetime)
ALTER TABLE [dbo].[testfunc] ADD CONSTRAINT...
April 22, 2013 at 10:04 pm
brian.battles (4/22/2013)
April 22, 2013 at 3:33 pm
erikd (4/22/2013)
with rt as (
select right(email, len(email) - charindex('@', email)) as...
April 22, 2013 at 3:25 pm
haiao2000 (4/22/2013)
So after restored on a SQL 2008 R2 engine, the database being upgrated to 2008 R2 or is it still considered sort of SQL 2005 database running on...
April 22, 2013 at 2:47 pm
I will assume that you still didn't read the article. You are much more likely to get help if you turn that into ddl (create table scripts) and sample data...
April 22, 2013 at 2:45 pm
This will still work as long as there aren't more than 3 '.' in your value.
So things like 'http://www.maps.google.com' will work fine.
But 'http://www.mysubdomain.yourdomain.anotherdomain.com' will return NULL.
April 22, 2013 at 2:35 pm
Use PARSENAME.
with MyData(url) as
(
select 'http://www.google.com' union all
select 'https://www.google.com' union all
select 'www.google.com' union all
select 'www.google.info' union all
select 'www.google.mobi' union all
select 'www.google.de'
)
select PARSENAME(url, 2)
from MyData
April 22, 2013 at 2:32 pm
haiao2000 (4/22/2013)
Quick question experts!A backup is made on SQL Server 2005, can it be restored to SQL Server 2008 R2 engine?
Sure no problem. It cannot however go the other direction....
April 22, 2013 at 2:29 pm
This sounds like a very typical parent-child type of situation. How do you code for this? That depends entirely on what your ddl looks like. It might be a recursive...
April 22, 2013 at 2:28 pm
mbhandari (4/22/2013)
CREATE FUNCTION dbo.SplitString ( @string varchar(4000))
RETURNS @Result TABLE(SpiltedString VARCHAR(100))
AS
BEGIN
DECLARE @xml XML
...
April 22, 2013 at 1:40 pm
fadewumi (4/22/2013)
l have the management tool already install
Great.
Start a new thread with questions you might have.
April 22, 2013 at 12:09 pm
fadewumi (4/22/2013)
hi , my name is florence , am new in sql data, l need help to be able to kow database
Hi and welcome Florence. The forums here are a...
April 22, 2013 at 11:45 am
Viewing 15 posts - 8,566 through 8,580 (of 15,381 total)