Viewing 15 posts - 6,346 through 6,360 (of 15,381 total)
RVO (11/4/2013)
This is how I call procedure:
EXEC UnitPricingTrans
@P_PER_START = 201308,
@P_PER_END = 201309,
@P_CO_CODE = '7001',
@P_UNIT_TYPE = 'VEH',
@P_UNIT = 'AUSMV'
And I always run it with the same...
November 4, 2013 at 8:02 am
RVO (11/4/2013)
The first execution took 10 min.
When I ran it second time it took 7 sec.
All other runs on that day took...
November 4, 2013 at 7:52 am
roy.tollison (11/1/2013)
i have figured out how to avoid for a single column unique index but how do...
November 1, 2013 at 3:28 pm
TJT (11/1/2013)
I am trying to change the date format from "2012-06-02 12:25:32.393" to "2012-06"
SELECT Mydate, CONVERT(VARCHAR(7),MyDate, 120) As NewDate
FROM MyData
This works, but NewDate is not in Date Format. ...
November 1, 2013 at 3:21 pm
malcolm.garbett (11/1/2013)
Sean Lange (11/1/2013)
1. Sample DDL in the form of CREATE TABLE statements
2. Sample data in the form of INSERT INTO...
November 1, 2013 at 1:29 pm
Take a look at this article.
http://technet.microsoft.com/en-us/library/ms189849.aspx
Then scroll down and read about lock escalation. That should answer your questions pretty well.
November 1, 2013 at 12:53 pm
halifaxdal (11/1/2013)
Declare @SVPID int
Set @SVPID = 0
Select SummaryTitle =
Case When @SVPID = 0 Then 'All SVPs' Else Division End From ITSDivision Where ID = @SVPID
This should has nothing...
November 1, 2013 at 12:23 pm
SQLRNNR (11/1/2013)
The Dixie Flatline (11/1/2013)
Stefan Krzywicki (11/1/2013)
SQLRNNR (11/1/2013)
The Dixie Flatline (11/1/2013)
SQLRNNR (11/1/2013)
The Dixie Flatline (11/1/2013)
SQLRNNR (11/1/2013)
The Dixie Flatline (11/1/2013)
[font="Wingdings"]It should be the last font on the dropdown, Luis.[/font]
[font="Wingdings"]How sure are...
November 1, 2013 at 10:47 am
craig1768 (11/1/2013)
or proc. Sometimes its not...
November 1, 2013 at 9:26 am
It is quite simple. Don't do this in the same batch.
IF OBJECT_ID(N'dbo.mtzcus_2014_CoreMenuReportCriteria', N'U') IS NOT NULL
DROP TABLE dbo.mtzcus_2014_CoreMenuReportCriteria;
CREATE TABLE dbo.mtzcus_2014_CoreMenuReportCriteria
(
MeasureType VARCHAR(20) NOT NULL
,MeasureOrder TINYINT NOT NULL
,ObjectiveNumber VARCHAR(3) NOT NULL
,ObjectiveName VARCHAR(100)
,CriteriaCertificationNumber...
November 1, 2013 at 9:18 am
In order to help we will need a few things:
1. Sample DDL in the form of CREATE TABLE statements
2. Sample data in the form of INSERT INTO statements
3. Expected results...
November 1, 2013 at 7:29 am
The case expression does not limit the rows that are returned, it is used to determine the value for a given column. If you want to eliminate duplicates a case...
October 30, 2013 at 1:22 pm
GilaMonster (10/30/2013)
October 30, 2013 at 8:36 am
m.dunster (10/30/2013)
Wondering if anyone has an elegant solution to finding out how much time has elapsed for a specific hour.
declare @t as table (ptr int identity, START time, ENDD time)
insert...
October 30, 2013 at 8:06 am
Stefan Krzywicki (10/29/2013)
Sean Lange (10/29/2013)
Ed Wagner (10/29/2013)
Sean Lange (10/29/2013)
Chad Crawford (10/29/2013)
October 29, 2013 at 12:35 pm
Viewing 15 posts - 6,346 through 6,360 (of 15,381 total)