Viewing 15 posts - 151 through 165 (of 1,412 total)
TOP needs to be placed before the variable setting.
Declare @Name varchar(30)
Select Top 1 @Name = CustName
From Customer
Order By CustName
I do not know why you had the GROUP BY clause in...
October 24, 2005 at 12:13 am
Doing so...are there problem of security?
Uhm, well definitely. I would say that unless you are creating your own Enterprise Manager-ish admin client I would seriously question the need to create...
October 24, 2005 at 12:10 am
What sets my warning bells on is that you have AWE enabled and yet only max server memory configured to 1024. I am not sure what effects that will have....
October 24, 2005 at 12:04 am
I do not think there is any way to do that in t-sql. If you are executing the command from a .Net client (or similar) you can get that information...
October 21, 2005 at 3:47 am
Adding a secondary log file is definitely not something he should do. I have yet to see a single scenario where having multiple log files gives any advantage at all....
October 21, 2005 at 3:45 am
SELECT Name, 'column1' AS newColumnName, column1 AS newColumnValue
FROM yourtable
UNION ALL
SELECT Name, 'column2', column2
FROM yourtable
UNION ALL
SELECT Name, 'column3', column3
FROM yourtable
October 21, 2005 at 2:46 am
(Saving the Site Owners from some hard work)
Answered in other thread
October 19, 2005 at 5:50 am
I do not have any benchmarks, but one simple pro for Dual Core procs is that Microsoft only charge you per socket.
October 19, 2005 at 5:47 am
First of all, you should read this good article by Trudy Pelzer regarding metadata. As you will find, the INFORMATION_SCHEMA way of describing metadata is the ANSI-standard recommended way,...
October 19, 2005 at 1:00 am
The memory issues are very annoying. I always read the forums br browsing the Active Threads to see everything that is new since my last visit. If I get an...
October 19, 2005 at 12:40 am
This is normal in any development environment, am i right!!!
What do you mean? It should never be considered normal to allow dirty reads.
Will this give an order of magnitude difference...
October 19, 2005 at 12:19 am
I assume you mean "every table on my database where a column with a particular name is present".
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME = @columnname
October 18, 2005 at 11:56 pm
Use any Windows implementation of tail, for instance by installing Cygwin.
October 18, 2005 at 11:52 pm
What happens when you connect through QA?
If nothing else works, you could try reinstalling just the client tools.
October 16, 2005 at 11:46 pm
Viewing 15 posts - 151 through 165 (of 1,412 total)