Viewing 15 posts - 3,931 through 3,945 (of 13,462 total)
certainly possible, but you need to generate a list of all possible dates;
A Tally Table is one of the easiest ways to do that;
here's just one way to do it:
create...
March 4, 2013 at 1:35 pm
a parameter declared like DECLARE @var NVARCHAR or DECLARE @var2 VARCHAR has a size of ONE character...I think that's what Phil is going after...bad definition in the Stored procedure.
you would...
March 4, 2013 at 12:25 pm
ok i just tested this, but i made some assumptions;
when you say "
I THINK you are saying "If I pass this string 'd;c;b;a;e', i want the companies ordered in that...
March 1, 2013 at 3:16 pm
saifulislam6720 (3/1/2013)
March 1, 2013 at 11:43 am
Great job on supplying the DDL and Sample data;
probably a copy paste error, but two of the dates have the month "22", so i couldn't get it loaded all teh...
February 28, 2013 at 11:25 am
Raghunath Garlapati (2/28/2013)
We have around 1500 tables and 15000 columns. My concern is not about the increase in DB size(memory).
I am more interested to know that...
February 28, 2013 at 6:19 am
extended properties don't have any significant impact on the database size; it's not describing per-row data, but rather schema data.
the other thing to remember is that objects that are not...
February 28, 2013 at 5:39 am
The query you posted is using the same index stats to determine when the LAST time a table was accessed. you had asked for the most frequently used, which my...
February 28, 2013 at 5:20 am
something like this seems pretty close for a fast query:
SELECT
DB_NAME(database_id) AS TheDatabase,
OBJECT_NAME(object_id,database_id) As TheTableName,
SUM(user_seeks) AS user_seeks,
SUM(user_scans) AS user_scans,
SUM(user_lookups) AS user_lookups,
...
February 27, 2013 at 3:46 pm
Steve Jones - SSC Editor (2/27/2013)
Haven't seen a lot on it. I know Adam Machanic and a few people use it, but don't see much written.
I did run across this:...
February 27, 2013 at 3:25 pm
or did you mean the last non-null column, regardless of the datetime value? my example above finds the highest date, regardless of which column.
in that case, assuming your app files...
February 27, 2013 at 1:23 pm
great job on giving us the setup DDL and Data.
Your data has all the same datetimes, so it'll probably look better when you compare the example with real data.
this seems...
February 27, 2013 at 1:19 pm
wow save that 35K for bonuses!
my first link for creating a free VPN between networks:
http://www.wikihow.com/Set-Up-a-Virtual-Private-Network-with-Windows
another possibility might include secure FTP to throw files on endpoints accessible to both servers.
February 27, 2013 at 12:48 pm
Viewing 15 posts - 3,931 through 3,945 (of 13,462 total)