Viewing 15 posts - 4,381 through 4,395 (of 7,614 total)
I suggest creating the proc in the master db and marking it as a "system" proc. It will then work within the context of the current db, whatever that...
March 15, 2016 at 10:21 am
Maybe?:
SELECT CONVERT(varchar(8), DATEADD(SECOND, DATEDIFF(SECOND, ISNULL(QueueDate, StartDate), EndDate), 0), 8)
March 14, 2016 at 3:29 pm
If you decide to run it locally, clustering the tables to match the join logic will help:
IF OBJECT_ID('tempdb.dbop.#RFI') IS NOT NULL
DROP TABLE #RFI
CREATE TABLE #RFI
(
COMMIT_NO CHAR(4),
BODY_NO...
March 11, 2016 at 10:23 am
Does the clustering key start with Monthkey? And the partitioning key?
March 10, 2016 at 1:41 pm
kenambrose (3/10/2016)
[[If you deal with a report and want all columns via left joins, then there will be nulls. ]]
We don't know...
March 10, 2016 at 1:25 pm
For efficiency, the WHERE clause should include just the specific date ranges you need, rather than the entire year. Particularly if m1_KF.dbo.ShipmentLines is clustered first on smlCreatedDate (which it...
March 10, 2016 at 12:28 pm
Try using a CROSS APPLY to assign an alias to the random number:
SELECT
RowSequence AS CaseID
,DateSequenceas [CaseDate]
,random_number
,CASE random_number
WHEN1THEN'Black'
WHEN2THEN'White'
WHEN3THEN'Red'
WHEN4THEN'Blue'
WHEN5THEN'Silver'
WHEN6THEN'Grey'
WHEN7THEN'Green'
WHEN8THEN'Yellow'
ENDas [VehicleColour]
FROM #RowGen
CROSS...
March 10, 2016 at 10:31 am
Zidar (3/10/2016)
Somewhere at the begginig it was said that rows in a table (tuples in a realtion) represent only TRUE propositions (declarations). If 'a piece of data is unknown' it...
March 10, 2016 at 8:32 am
Look at the missing index stats, index usage stats and index operational stats. SQL itself will help you determine the best clustered index, which should be your goal.
March 8, 2016 at 11:32 am
You'll get the most performance benefit by determining and implementing the best clustered index for that table, in this case very likely the date.
But you might also gain some performance...
March 7, 2016 at 9:08 am
What is the data type for:
sys_updated_on
?
If it's smalldatetime/datetime/date/datetime2, then you should compare it to format YYYYMMDD, because that format is 100% universal across any/all SQL instances. The convert code...
March 4, 2016 at 10:30 am
What is really critical is how the information table is clustered. Insure the table has the best clustering index to reduce rows to be read as much as possible...
March 3, 2016 at 9:49 am
In the real world, there can be unknown values at a given point in time in a data store. For example, birth date. If you need to create...
March 3, 2016 at 8:29 am
Zidar (3/2/2016)
In T-SQL it takes two CHECK constraints to enforce the rule:
C1: CHECK (NOT [Job] = 'DBA" OR [CertificateNum] IS NOT NULL)
C2: CHECK ([CertificateNum] ...
March 2, 2016 at 2:03 pm
kenambrose (3/2/2016)
it was in earlier post. put nullable column into it's own table, enforce 1 to 1 relationship to parent table.
no data for a row in...
March 2, 2016 at 1:39 pm
Viewing 15 posts - 4,381 through 4,395 (of 7,614 total)