Viewing 15 posts - 4,291 through 4,305 (of 7,610 total)
It looks like some columns are missing from the SELECT above, so I can't try to do the full query, but here's a general approach for using a lookup table...
May 23, 2016 at 9:41 am
IF OBJECT_ID('tempdb.dbo.#DBDATATYPES') IS NOT NULL
DROP TABLE #DBDATATYPES
CREATE TABLE #DBDATATYPES
(
DbName nvarchar(128)
,TableName nvarchar (128)
,ColumnName nvarchar (128)
,Datatype nvarchar (128)
)
INSERT INTO #DBDATATYPES
EXEC sys.sp_MSforeachdb '
IF ''?'' IN (''master'', ''msdb'')
...
May 18, 2016 at 10:57 am
SELECT DATEADD(MONTH, DATEDIFF(MONTH, 0, START_DATETIME), 0) AS START_MONTH,
SUM(SALES) AS TOTAL_SALES
FROM MY_TABLE
WHERE START_DATETIME >= '20150101' AND START_DATETIME < '20150511'
GROUP BY DATEADD(MONTH, DATEDIFF(MONTH, 0, START_DATETIME), 0)
ORDER BY...
May 18, 2016 at 10:50 am
Matthew Saggers-700210 (5/12/2016)
A int
B int
c int
D as A+B
E as ((A+B) / c) /...
May 12, 2016 at 9:52 am
orjan.franzen (5/6/2016)
May 6, 2016 at 1:34 pm
orjan.franzen (5/6/2016)
The usage of unique indexes instead of declarative primary key constraints is just an old way of implementing entity integrity and should be avoided/forbidden if it's not for backwards...
May 6, 2016 at 9:33 am
RichB (5/6/2016)
What utter flamebait.Congratulations.
As to people who are saying it's the DBA's job to index - Developers can't possibly be expected to grasp the subtleties... hogwash.
No, it's not....
May 6, 2016 at 9:30 am
Select mcr.*
FROM dbo.G_MASTER_CODING_RESULTS AS mcr WITH (NOLOCK)
left join (
SELECT
MCRNUS.MASTER_CODING_RESULTS_ID
FROM G_MASTER_CODING_RESULTS AS MCRNUS With (NOLOCK)
WHERE...
May 5, 2016 at 1:23 pm
pietlinden (5/4/2016)
http://sqlinthewild.co.za/index.php/2009/08/17/exists-vs-in/
I would have sworn that EXISTS stops as soon as a True/False changes, while an IN reads the whole table. So I would...
May 4, 2016 at 11:16 am
cookiemonstagt (5/3/2016)
So the data is saved on shared file and config locally .?
I coded the backups to go to c:, which is local drive for that node only,...
May 3, 2016 at 10:29 am
Lynn Pettis (5/3/2016)
ScottPletcher (5/3/2016)
May 3, 2016 at 10:26 am
cookiemonstagt (5/3/2016)
.. thanks and one last question if the db is shared each node has these 3 files to be able only to run the...
May 3, 2016 at 10:21 am
You need to create an index on ID in T2, T3, T4, T5 and T6.
You should check the tables in the order of most likely to EXIST first, so that...
May 3, 2016 at 10:16 am
You can backup the dbs using the commands below from within SSMS or other appropriate SQL utility. Since someone has gone to the trouble to cluster the SQL instance,...
May 3, 2016 at 10:09 am
Using HAVING eliminates a pass of the table and makes it easier to specify different conditions.
SELECT mt.*
FROM@myTable mt
INNER JOIN (
SELECT ColumnA
FROM @myTable
...
May 2, 2016 at 10:12 am
Viewing 15 posts - 4,291 through 4,305 (of 7,610 total)