Viewing 15 posts - 4,531 through 4,545 (of 26,490 total)
erichansen1836 (9/15/2015)
https://support.microsoft.com/en-us/kb/303528ARTICLE: How to keep a Jet 4.0 database in top working condition
Make the link clickable:
September 15, 2015 at 10:57 am
erichansen1836 (9/15/2015)
SQL SERVER
========
* For Network or non-Network Databases larger than 5 Terabytes and 25 Billion rows - use SQL Server
* For Network Databases smaller than 5 Terabytes and...
September 15, 2015 at 10:54 am
ScottPletcher (9/15/2015)
Lynn Pettis (9/15/2015)
Ed Wagner (9/15/2015)
Eirikur Eiriksson (9/14/2015)
Sorry, slightly hurried and inaccurate😎
CONVERT(DATE,AppDetails.DateDetailDisposed,0) = CONVERT(DATE,DATEADD(DAY,-21,getdate()),0)
If your DateDetailDisposed column is a datetime data type, you might run into a performance problem here....
September 15, 2015 at 9:56 am
Ed Wagner (9/15/2015)
Eirikur Eiriksson (9/14/2015)
Sorry, slightly hurried and inaccurate😎
CONVERT(DATE,AppDetails.DateDetailDisposed,0) = CONVERT(DATE,DATEADD(DAY,-21,getdate()),0)
If your DateDetailDisposed column is a datetime data type, you might run into a performance problem here. Applying a...
September 15, 2015 at 9:01 am
roger.plowman (9/14/2015)
Hate to be argumentative, but such zen code is the sound of one hand clapping...
Not as good at commenting my code as I would like, but working on it.
I...
September 14, 2015 at 4:59 pm
Wayne West (9/14/2015)
September 14, 2015 at 4:41 pm
Try using the new system views since it looks like you are using SQL Server 2012. Check out this one: sys.sql_modules.
Please note that you may not see the entire...
September 14, 2015 at 4:17 pm
When talking to recruiters, try to find ones with a headhunter mentality, not those that are just trying to fill slots or meet quotes. Those with a headhunter mentality...
September 14, 2015 at 2:41 pm
ScottPletcher (8/25/2015)
September 14, 2015 at 2:35 pm
Ed Wagner (9/14/2015)
Lynn Pettis (9/14/2015)
Ed Wagner (9/14/2015)
SELECT so.name table_name, sc.name column_name, fk.name fk_name, so_fk.name references_table, sc_fk.name referenced_column
FROM sys.objects so
INNER JOIN...
September 14, 2015 at 2:03 pm
Ed Wagner (9/14/2015)
SELECT so.name table_name, sc.name column_name, fk.name fk_name, so_fk.name references_table, sc_fk.name referenced_column
FROM sys.objects so
INNER JOIN sys.columns sc on sc.object_id...
September 14, 2015 at 1:58 pm
Here is a start using the system views. You would need to do some work to get things like VARCHAR(100), VARCHAR(MAX), DECIMAL(18,6), etc.
select
tab.name tableName,
...
September 14, 2015 at 1:47 pm
krypto69 (9/14/2015)
So if I exclude the HEAP tables I still have 100 tables that have fragmentation over...
September 14, 2015 at 11:16 am
How big are the tables with 70% fragmentation? What is their page size?
September 14, 2015 at 10:22 am
I am not interested in rolling my own DBMS even if part of it is done for me, the Jet engine. Everything you have been writing from scratch is...
September 14, 2015 at 9:25 am
Viewing 15 posts - 4,531 through 4,545 (of 26,490 total)