Viewing 15 posts - 2,056 through 2,070 (of 2,647 total)
GilaMonster (12/8/2011)
(hint I'm pretty sure I covered this in my indexing articles here)
Maybe for the less patient you can point me to those articles?
Jared
December 8, 2011 at 12:16 pm
Ninja's_RGR'us (12/8/2011)
Ninja's_RGR'us (12/8/2011)
P.S. Why are you trying to learn sql 7? Sql 12 is coming out in the next few months!!
Are there surviving machines that can run SQL 7?...
December 8, 2011 at 11:50 am
GilaMonster (12/8/2011)
CREATE INDEX idx_Test ON SomeTable (ColA);
SELECT ColA FROM SomeTable;
SELECT ColB FROM SomeTable WHERE ColA = 137;
The given index is covering for the...
December 8, 2011 at 11:48 am
ramanamreddy (12/7/2011)
I have a column patID with some values( with some condition 1), patID with some columns(with some condition 2).How can I merge all the values into a single patID...
December 7, 2011 at 3:27 pm
MidBar (12/7/2011)
So ISO standard is the strongest reason of choosing this format i.e. "YYYYMMDD HHMMSS" which is widely adopted by most DBAs/Developers and easily understandable in most of DBMS...
December 7, 2011 at 7:57 am
Jeffrey Williams 3188 (12/6/2011)
MidBar (12/6/2011)
OR
can be any dis-advantage if we write like...
December 6, 2011 at 12:41 pm
MidBar (12/6/2011)
OR
can be any dis-advantage if we write like 23/sep/2011 111213?
"YYYY-MM-DD HH:MM:SS...
December 6, 2011 at 9:49 am
Not looking back at your original code, you should have indexes first on the columns that you filter on. Was that a date range I believe? Also, if you...
December 6, 2011 at 8:01 am
MidBar (12/6/2011)
December 6, 2011 at 6:03 am
It has to be the data type of the MySql data, because the syntax '2010-01-01' works the same on both MySql and MSSQL.
Jared
December 5, 2011 at 2:25 pm
Is it possible you have some data problems in the csv? For example, in the column mapping of the wizard, are there more columns than there should be?
Thanks,
Jared
December 5, 2011 at 2:14 pm
krushkoder (12/5/2011)
We can't really pull everybody off to do "pretend work" in a test environment while we observe and document all the errors.
I'm sorry, but this is quite a silly...
December 5, 2011 at 11:24 am
Ah yes... 9 to 10. Oops... I still think the best way to do this is to have the columns in the table;
CREATE TABLE ClientVersion (id int identity(1,1), Version...
December 5, 2011 at 11:15 am
Being that this is a data warehouse, why not build an aggregate table and run your query against that?
Jared
December 5, 2011 at 11:11 am
Run this:
use tempdb
CREATE TABLE #ClientVersion(id int identity(1,1), ClientVersion varchar(20), UserName varchar(20))
INSERT INTO #ClientVersion
SELECT '2.5.0.1','ram'
UNION ALL
SELECT '2.6.0.2', 'suresh'
UNION ALL
SELECT '2.7.1.2', 'ram'
UNION ALL
SELECT '2.5.1.2', 'raj'
UNION ALL
SELECT '2.3.1.2', 'ram'
UNION ALL
SELECT '2.3.0.2', 'gouse'
UNION ALL
SELECT...
December 5, 2011 at 11:08 am
Viewing 15 posts - 2,056 through 2,070 (of 2,647 total)