Viewing 15 posts - 2,071 through 2,085 (of 2,268 total)
I don't drive to work, but spend over an Hour on the tube (if there are no delays) and in this heat it getting a bit unberable...
July 4, 2008 at 4:49 am
the SQL server 2005 Bible is an excellent book, it has helped me out many times..
July 4, 2008 at 4:46 am
Have you tried creating an ODBC connection to SQL and then linking to this via
Data --> Import External Data --> New Database Query
You can write your queries there and...
July 4, 2008 at 3:57 am
This is something that should probably be left up to your front-end application.
July 3, 2008 at 6:40 am
There is an excellent article on this site about splitting delimitted strings.
http://www.sqlservercentral.com/articles/TSQL/62867/
The article deals with csv but would be easy to change to '|'
July 3, 2008 at 5:42 am
bilalhaider86 (7/3/2008)
My question was how many rows maximum in a table.
As stated and as in the link, it depends on how much storage space you have on your server,...
July 3, 2008 at 3:54 am
adnan.korkmaz (7/3/2008)
steveb (7/2/2008)
It is only procedures with 'SP_' prefix that cause the performance impact of scanning the system databases first.'SP' should be fiine.
So, isn't some similar scanning occur...
July 3, 2008 at 2:48 am
rconway (7/2/2008)
I see that a couple of you have asked for the code that created the tables but there is none.
Thanks for the feedback,
For future reference to obtain the...
July 3, 2008 at 2:34 am
Rather than use a recursive query , why don't you use another inner-join
SELECT ci.StmtNum, s.Stmt, s.Count_Range,sc.CharNum, c.Characteristic
FROM tblClientImport...
July 2, 2008 at 10:59 am
MentalWhiteNoise (7/2/2008)
but I believe that the answer to this Exam Question is "NO!".
Have to agree with this, there are a lot better examples of SQL puzzles that can be...
July 2, 2008 at 8:10 am
Your first query would have thrown an error since the second ')' was in the wrong place.
also try removing the space after 's. '
July 2, 2008 at 5:43 am
What is the error message you are getting with Query 1 ?
try writing query 1 like this
Update DIRXMLUSER
SET JOBTITLE = (SELECT SHEET1$.[JOB TITLE] FROM SHEET1$ S
...
July 2, 2008 at 5:25 am
Both of them are going to be in demand in the future, it really depends on the size of the organisation you work for. Quite often the same dba...
July 2, 2008 at 4:44 am
It is only procedures with 'SP_' prefix that cause the performance impact of scanning the system databases first.
'SP' should be fiine.
July 2, 2008 at 4:13 am
SQL Server BoL is a good start.
There are also plenty of books available from Amazon or your local book-store on pretty much every aspect of SQL -- take your pick..
July 1, 2008 at 10:48 am
Viewing 15 posts - 2,071 through 2,085 (of 2,268 total)