Viewing 15 posts - 3,811 through 3,825 (of 8,731 total)
luissantos (11/16/2015)
What is the best solution to the problem since users complain of slowness.
Why do you believe that slowness is related to the size of the data file and the...
November 16, 2015 at 12:42 pm
sqlfriends (11/16/2015)
Other than server management, what other skills or path DBA should learn and prepare for future?
For example, skills like...
November 16, 2015 at 10:28 am
My solution would be to add a default constraint to get the current date on the column. With that in place, use a format file to insert values only in...
November 16, 2015 at 10:14 am
This will return the last five games for each team.
If you want to return the last five games for a single team, you can have a simpler approach (or approaches).
DECLARE...
November 16, 2015 at 9:40 am
There's a lot to be done. As you don't have nothing installed yet, I'll assume that you'll get the latest version available (2014). I strongly suggest that you read the...
November 16, 2015 at 8:29 am
Just to be clear.
MS Access, MS SQL Server, MySQL, PostgreSQL and others are different products to handle databases. They share similarities, but queries are written different for each one of...
November 16, 2015 at 7:57 am
Jeff Moden (11/14/2015)
GilaMonster (11/14/2015)
November 14, 2015 at 4:29 pm
GilaMonster (11/14/2015)
November 14, 2015 at 1:25 pm
What I posted doesn't use a function and it'll be the best way to do it. If you want to filter rows, you just change the condition to the WHERE...
November 13, 2015 at 1:46 pm
RVO (11/13/2015)
Added DDL for two problematical tables...S_CLIENT_SHARED
S_CLIENT_ACCOUNT_ASSOCIATION_SHARED
You're lacking indexes on those tables. If we're talking about millions of rows, that will definitely be a problem.
November 13, 2015 at 1:31 pm
etirem (11/13/2015)
Please, I need only Integers and in SSIS, thank you.
Is this a question for a test? Why do you have restrictions? Why are you cheating?
November 13, 2015 at 1:27 pm
RVO (11/13/2015)
Without DISTINCT, row count is actually 20 billion something.
Maybe that's what Estimated Row counts show ?
To me if without DISTINCT query returns 20 billion records from 80...
November 13, 2015 at 1:26 pm
For Q1:
You need to set different values for the Value and Label properties for your month attribute in the date dimension.
For Q2:
You need to build a hierarchy to be able...
November 13, 2015 at 1:21 pm
Ed Wagner (11/13/2015)
Luis Cazares (11/13/2015)
hoseam (11/13/2015)
I have a column that has values [1,2,3....10,11,13,14 ...]
I want to return just two characters, e.g [01, 02, 03....10,11,12...]
I concatenated a string before to
'0'||CAST(m.d_depend...
November 13, 2015 at 1:18 pm
Set your source as a query instead of a table, then use this:
SELECT ID,
Value,
CASE WHEN Value NOT LIKE '%[^0-9]%'...
November 13, 2015 at 1:08 pm
Viewing 15 posts - 3,811 through 3,825 (of 8,731 total)