Viewing 15 posts - 22,021 through 22,035 (of 26,484 total)
prvreddy (3/12/2009)
Hi guys,Nobody gave definitions to all my questions.You are all giving links or BOL links.But, i need definition, please help me in this regard
Thanks
Vijay
Why rewrite things when you can...
March 12, 2009 at 10:25 pm
Mohit (3/12/2009)
You can use a function to do you check constraint ...
It still needs to be a TABLE level CHECK contraint.
March 12, 2009 at 3:06 pm
pklug (3/12/2009)
The basic operation of this will (should) be:
1. Customer selects a combination of 3 attributes, as shown in the...
March 12, 2009 at 3:05 pm
frankivey (3/12/2009)
GilaMonster (3/12/2009)
frankivey (3/12/2009)
"Yes, with a full backup because full backup of the database filegroup is just like getting a full backup of the database", which is trueIt is?
Yes...
March 12, 2009 at 3:03 pm
Start with this and go from there:
declare @price table (
PriceID int,
UnitPrice money
);
declare @PriceGroup table (
PriceID int,
...
March 12, 2009 at 2:45 pm
Nope. I still have BOL for SQL Server 2000 on one of my desktop systems. Read about SAVE TRANSACTION in BOL.
March 12, 2009 at 2:33 pm
SQL Guy (3/12/2009)
This table has :
phone_id (PK, identity),
user_id (FK),
phone_num,
decsription,
is_primary bit
The rule is that only one...
March 12, 2009 at 2:31 pm
GilaMonster (3/12/2009)
Lynn Pettis (3/12/2009)
I have to agree as well. I'd love to get Babylon 5 on DVD.http://www.amazon.com/Babylon-5-Complete-Television-5-Pack/dp/B0001M3MXY/
I just sent "she who must be obeyed" the link you provided.
We'll see...
March 12, 2009 at 2:23 pm
GilaMonster (3/12/2009)
Bob Hovious (3/12/2009)
I missed out on Babylon 5 🙁 It fell during a period of years where I never had time for TV.
It's available on...
March 12, 2009 at 2:04 pm
JacekO (3/12/2009)
That's my point. The proper nesting is not supported by the SQL. Maybe it's because of the violation of the ACID rules but it is not there.
I ...
March 12, 2009 at 1:51 pm
JacekO (3/12/2009)
If I am not mistaken the SAVE POINTS still does not provide you with an option to nest. It allows you to rollback to a certain point but...
March 12, 2009 at 1:36 pm
Here is some test code. Let me know if this helps.
declare @teststr varchar(20);
set @teststr = 'p_a3c_master';
select
@teststr
where
@teststr like '__[A-Za-z][A-Za-z][A-Za-z]%';
set @teststr = 'p_abc_master';
select
...
March 12, 2009 at 12:54 pm
Regarding transactions, you can use SAVE POINTS to avoid ROLLBACK undoing all your work. You can do this to nest your transactions, and yet ensure that some of the...
March 12, 2009 at 12:48 pm
Grant Fritchey (3/12/2009)
You want to use the datepart function. You can look it up in BOL for all the permutations, but it basically works like this:
SELECT DATENAME(yyyy,'3/12/2009') AS 'Year'
Or:
declare...
March 12, 2009 at 9:34 am
Here is some test code for you to work with:
create table #Temp (
Column1 datetime,
Column2 datetime null
);
insert into #Temp (Column1)
select '2009-03-12 07:00' union...
March 12, 2009 at 8:59 am
Viewing 15 posts - 22,021 through 22,035 (of 26,484 total)