Viewing 15 posts - 8,641 through 8,655 (of 26,490 total)
sqlnaive (3/5/2013)
Yes, but then is it a known bug with SQL ? because sp_helptext is the most basic and efficient way of getting the proc definition.
First, I don't use sp_helptext...
March 5, 2013 at 7:24 am
Please post the DDL for the table(s), sample data for the tables, expected results after the update(s) are completed, and the code used for the updates (including code for the...
March 5, 2013 at 7:07 am
Jeff Moden (3/4/2013)
Charmer (3/15/2012)
SQLKnowItAll (3/15/2012)
March 4, 2013 at 4:36 pm
ScottPletcher (3/4/2013)
GilaMonster (3/4/2013)
ScottPletcher (3/4/2013)
GilaMonster (3/4/2013)
dembones79 (3/4/2013)
Should the region and district columns be included in the unique clustered index of the view?
Bear in mind that a clustered index implicitly includes...
March 4, 2013 at 4:34 pm
Based on your code, something like this will work:
WITH BaseData as (
SELECT
a.PLANT_NO AS PlantNumber,
SUM(a.APPLIED_VOL) AS AppliedVolume
FROM
[EdwStaging].[RAW].[FactSettleFee_TIPS_QRMTIPS_QPOST_SETTLE_FEE] a
GROUP BY
...
March 4, 2013 at 1:36 pm
sunder.mekala (3/4/2013)
I have a requirement where i have to write a Sql for :
basically i have 2 columns 'startdate_SK' and 'enddate_SK' columns in table 'A'
'startdate_SK' is a integer...
March 4, 2013 at 12:14 pm
No. Database mirroring has to be doe between the same versions of SQL Server.
March 4, 2013 at 11:59 am
prakashr.r7 (3/4/2013)
I can generate unique values....what i am asking is " How do you generate unique values for 40 rows ? " We can generate upto 36 right? How...
March 4, 2013 at 8:52 am
Best way to determine this is to setup a test environment and do it both ways. Using a default will alleviate the need for the developers to code for...
March 4, 2013 at 7:20 am
Lynn Pettis (3/3/2013)
Regarding the second question, from MSDN:
LISTENER_IP = ALL | (4-part-ip ) | ( "ip_address_v6" )
Specifies the...
March 4, 2013 at 7:14 am
Chrism@Work brought to my attention a copy/paste error in my code. Please see the code below:
SET NOCOUNT ON
GO
--I changed the order of these functions to the order in which
--they...
March 4, 2013 at 7:07 am
Pulivarthi Sasidhar (3/4/2013)
SELECT cls.Cname as Code,Amnt.Currency,ISNULL(Amnt.Amount,'NA') AmountFROM CLASS cls FULL JOIN Amount Amnt ON cls.code=Amnt.Code
ORDER BY Amnt.Currency
Try the above one...
First, your code as posted fails with this error:
Msg 8114,...
March 4, 2013 at 6:56 am
Easy peasy:
if exists(select 1 from sys.tables where object_id = object_id('dbo.Class'))
DROP TABLE dbo.Class;
if exists(select 1 from sys.tables where object_id = object_id('dbo.Amount'))
DROP TABLE dbo.Amount;
create...
March 4, 2013 at 1:00 am
Considering that Database Mirroring is accomplished at the transaction level I still don't have enough information to even try to answer your question. How about providing more details in...
March 4, 2013 at 12:02 am
Could be the fact that you double posted, or just that no one has an answer for you. I know I don't.
Please post any further responses here.
March 3, 2013 at 7:41 pm
Viewing 15 posts - 8,641 through 8,655 (of 26,490 total)