Viewing 15 posts - 46 through 60 (of 190 total)
duda (12/15/2009)
I'd like to try the produst as it seems to be cool and Nice to have.
It is pretty cool & nice.. though you need SQL R2 tools as mentioned...
December 15, 2009 at 7:41 am
Jack Corbett (12/10/2009)
Slick, you need 2008 R2 tools in order to see anything in the object explorer.
I'm running SQL Server 2008. Shouldn't I be able to see the objects in...
December 11, 2009 at 6:48 am
Hey Steve,
You're right about not being able to connect through the main logon box and only by clicking on "New Query" and then logging in through the login box that...
December 10, 2009 at 1:40 pm
lcee (12/9/2009)
I'm not sure where the "only works with Vista and Windows Server 2008" statement comes from. SQL Azure connectivity is working fine from my Windows 7 client.
Yeah..same here... works...
December 10, 2009 at 12:53 pm
After having used SQL backup by RedGate for so long, I have forgotten the syntax for a simple backup. I usually just script it out from the GUI! 😀 How...
December 1, 2009 at 1:59 pm
I've always used the system stored procedure sp_dbcmptlevel for finding out or altering the compatibility levels of our databases. I've used sp_helpdb but wasn't sure it provided the compatibility level...
December 1, 2009 at 1:39 pm
Yes it is. Sorry, was out for the holidays....
December 1, 2009 at 8:17 am
mangoale (12/1/2009)
http://www.w3shools.com is the way to go , this will give basics of how to write queries.
Totally agree. This is an extremely good site with great explanations. When I was...
December 1, 2009 at 7:43 am
In your first scripts SELECT statement, I dont see any logic or filters in the WHERE condition where you're telling it to exclude the old data and select new data....
November 25, 2009 at 7:26 am
yep getting zeroes for 9, 10 and 13
November 24, 2009 at 2:12 pm
I get all zeroes.
CHARINDEX(CHAR(9), ItemNo, 0)
Btw.. do I change the 9?
November 24, 2009 at 2:05 pm
Download SQL Server Express from here and the AdventureWorks database from here and then google SQL Zoo. Also, go to the nearest bookstore and pickup a book on SQL Server....
November 24, 2009 at 12:58 pm
Microsoft SQL Server Integration Services is mainly used for ETL type tasks. This is typical of an ETL task. Its a very quick and easy package that can be built...
November 24, 2009 at 12:42 pm
Or if those are the student id's that you need, just put more filters in there using the AND keyword.
So it would be something like..
WHERE StudentId IN(1,2,3,4)
...
November 24, 2009 at 12:32 pm
Supriya.S (11/24/2009)
Slick84 (11/24/2009)
I'm trying to trim the trailing spaces in my column data using below t-sql.
MAX(LTRIM(RTRIM(column_Name)))
Addt'l info, I use the max keyword to successfully group my data. Could the max...
November 24, 2009 at 12:22 pm
Viewing 15 posts - 46 through 60 (of 190 total)