Viewing 15 posts - 2,371 through 2,385 (of 7,168 total)
Abu Dina (1/14/2013)
They say it's best practice to name a SQL instance even it's the only instance on the host server.
I have not heard that one. Can you share a...
January 14, 2013 at 12:36 pm
All you showed was the SELECT column list. Could you please provide the full query based on the test table I provided in an earlier post? I would like to...
January 14, 2013 at 12:24 pm
Ed Wagner (1/14/2013)
If you need one, you have to include the TOP n clause in the SELECT statement.
...or TOP (n) PERCENT
January 14, 2013 at 12:18 pm
Ed Wagner (1/14/2013)
SELECT 'Your performance is ' + CONVERT(Varchar, grade);
I would consult the MySQL documentation under "string concatenation" for details on how it's...
January 14, 2013 at 12:01 pm
Steven Willis (1/14/2013)
DECLARE
...
January 14, 2013 at 10:40 am
paul.j.kemna (1/14/2013)
I did this and I believe it has shed some light on the...
January 14, 2013 at 10:33 am
I do not work with DB2 much and am not sure how great the driver is or how well the engine reports its own metadata when SSIS asks. Does DB2...
January 14, 2013 at 7:37 am
The SSIS package definitions are stored in msdb.dbo.sysssispackages. Because the definition is XML you can cast it to the XML data type and then operate on it using XQuery. A...
January 14, 2013 at 7:28 am
Output. External is just what SSIS thinks the source is.
January 14, 2013 at 7:17 am
If you download this SQLCLR component...
http://groupconcat.codeplex.com/%5B/url%5D
...then you can write code like this in SQL Server very similar to what you would expect to be able to write in MySQL. Adding...
January 14, 2013 at 7:13 am
Jeff Moden (1/13/2013)
bobd125 (1/10/2013)
January 14, 2013 at 6:59 am
I like to check to see how many CPUs are online as well:
-- cpu overview
SELECT osi.cpu_count AS LogicalCpuCount,
osi.hyperthread_ratio AS HyperthreadCoreRatio,
...
January 14, 2013 at 6:56 am
I meant in the Linked Server node in SSMS Object Explorer, under Providers, right click MSDASQL and go to Properties. What do you have setup for options?
January 13, 2013 at 9:22 pm
mister.magoo (1/13/2013)
And another Tally type version, but seems faster to me...
That's solid. I meant to come back to this because using RANK seemed clunky and I knew there had to...
January 13, 2013 at 9:21 pm
Viewing 15 posts - 2,371 through 2,385 (of 7,168 total)