Viewing 15 posts - 5,536 through 5,550 (of 7,608 total)
Do you have an underlying "master" table for these codes? If so, add a sort_sequence value to that table and sort based on that. Then you don't have...
December 22, 2014 at 3:52 pm
sqlvogel (12/22/2014)
Alexander Suprun (12/22/2014)
Are you saying that having a big composite primary key on multiple varchar columns which also has to be used in other tables for referential integrity has...
December 22, 2014 at 3:50 pm
Jeff Moden (12/22/2014)
CELKO (12/22/2014)
http://en.wikipedia.org/wiki/E.123
You also...
December 22, 2014 at 2:57 pm
Ray Herring (12/22/2014)
We think of and represent DateTime as a string and SSMS (and most other providers) obligingly display the value as...
December 22, 2014 at 2:55 pm
zerbit (12/22/2014)
hjelmesethe (12/22/2014)
The original poster's code creates a human-readable date/time in a bigint format.
Ok, but the point stated was to use a bigint to improve performance not to get...
December 22, 2014 at 8:53 am
If you're going to do this, do it much more efficiently without all the unnecessary variables:
alter function fn_generate_bigint(@datetime datetime)
returns bigint
as
begin
return (
select (
...
December 22, 2014 at 8:52 am
PiMané (12/19/2014)
the problem is that all the possible indexes generate lots of fragmentation and right now the main issue is to reduce page...
December 19, 2014 at 9:18 am
PiMané (12/19/2014)
CELKO (12/19/2014)
This...
December 19, 2014 at 9:04 am
Edit: Don't have data to test, but something like this should do it.
SELECT tn.ID,ca.Client,tn.TxDate,tn.GrossCost
FROM table_name tn
CROSS APPLY (
SELECT tn.Client AS Client
UNION ALL
...
December 18, 2014 at 4:34 pm
1) Cluster the table on ( Date, TableName )
2) Edit: The variables for date are just in case you later want to keep more history and do other rowcount comparisons....
December 18, 2014 at 4:20 pm
Not sure. I suggest running both queries and then looking at the plan cache:
SELECT ecp.usecounts, ecp.cacheobjtype, ecp.objtype, est.text
FROM sys.dm_exec_cached_plans ecp
CROSS APPLY sys.dm_exec_sql_text(plan_handle) est
WHERE est.text LIKE '%field_enum_values%'
December 18, 2014 at 3:18 pm
PiMané (12/18/2014)
You can have the pk on the uniqueid and have a fillfactor of 70 or...
December 18, 2014 at 9:48 am
You can do the full db backup ahead of time. You can do a differential just before you do the index changes.
Script out all existing non-clustered indexes ahead of...
December 17, 2014 at 3:47 pm
Here's a possible re-write of the first temp table INSERT:
insert into #temp_violation
select
tv.OrderID
,tv.StartDate
,tv.EndDate
,ca1.HourID
from EMSTBLSN.dbo.TimeViolation tv
cross apply (
select distinct fh.HourID
from G4SFEP1.dbo.Service fs
...
December 17, 2014 at 10:00 am
SELECT name
FROM table_name
UNION ALL
SELECT DISTINCT LEFT(name, 1) AS letter
FROM table_name
ORDER BY name
December 17, 2014 at 9:32 am
Viewing 15 posts - 5,536 through 5,550 (of 7,608 total)