Viewing 15 posts - 1 through 15 (of 17 total)
Gift Peddie (2/24/2009)
February 24, 2009 at 8:24 am
Gift Peddie (2/23/2009)
Run the code below in Management studio, check the link below for more options.
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Thanks for the info. Any ideas on my...
February 24, 2009 at 7:57 am
This is the first time I have setup DB mail since upgrading to SP2. I will give your solution a try. Thanks for the help!
February 12, 2009 at 8:50 am
Is there anyway to get intellisense on SSMS 2005?
January 2, 2009 at 12:12 pm
How did you get that box to pop up with the table names when you were writing the query to select *? Is that builtin to SQL 2008?
January 2, 2009 at 11:39 am
Adding the brackets took care of the problem. Kind of surprised that this column name was in the Adventure Works DB from Microsoft. Another lesson learned.
December 23, 2008 at 8:16 am
Here is a good article from SSC on MAXDOP
http://www.sqlservercentral.com/articles/Configuring/managingmaxdegreeofparallelism/1029/
December 17, 2008 at 11:12 am
You could also use the MAXDOP option at the end of your queries. This will set the number of physical processors used for that particular query. MAXDOP is...
December 17, 2008 at 11:08 am
Just learned that you can use the LIKE command to select individual months. You have to use the three letter abbreviation and enclose it in percent signs. A...
December 11, 2008 at 12:49 pm
k man (12/9/2008)
USE TestGO
INSERT INTO Practice
select 'John', 'Jones', '99980', '45', 'Payson', 'Arizona'
union all
select 'Mary','Jones','99982','25','Payson','Arizona'
union all
select 'Eric','Edwards','88232','32','San Diego','California'
Cheers,
K
Thank you! That worked great.
December 10, 2008 at 6:36 am
Unfortunately I am stuck with 2005 for now. Can you please provide an example using the UNION ALL statement?
December 9, 2008 at 1:11 pm
pradeepkumar.singh (12/5/2008)
alter database DB_NAME set read_only
Thanks!
December 5, 2008 at 8:51 am
Grant Fritchey (12/5/2008)
It's stored in the registry, so you could query that... not a great option.
Thanks for the tip. I did some Googling and came across this site.
December 5, 2008 at 8:47 am
ggraber (12/3/2008)
You did not have any records at exactly midnight on 10/4. However,...
December 3, 2008 at 12:42 pm
Viewing 15 posts - 1 through 15 (of 17 total)