Viewing 15 posts - 31 through 45 (of 62 total)
I use a free plug in for SSMS... http://www.tsqltidy.com/ It works pretty good.
January 22, 2014 at 12:08 pm
You are not alone. I have not gotten one in a few days.
December 11, 2013 at 7:50 am
It appears that you are missing a ) after the fields you have listed
Insert into table1 (field1, field2) select fielda, fieldb from table2
December 10, 2013 at 8:54 am
WITH DEFAULT_SCHEMA=[dbo]
Users based on logins in master
CREATE USER user_name
[
{ FOR | FROM } LOGIN login_name
...
September 4, 2013 at 9:28 am
You are using the Distinct in a sub-select in the where clause using IN, why use distinct at all? Whether you have 1 record that matches or 100 records...
August 6, 2013 at 7:17 am
Restart sql and it will create a new tempdb the size it was originally set up as. However you need to find the root cause of what made it...
August 1, 2013 at 9:22 am
We were able to resolve this by in the Failover Cluster Manager navigating from the cluster name to More Actions -> Move Core Cluster Resources -> Select Node and picking...
June 21, 2013 at 8:20 am
- You have a three node Windows Server Failover Cluster -- Yes
- You have three SQL Server instances - one per node? And are they standalone instances or Failover Cluster...
June 21, 2013 at 7:26 am
Yes to a network share, and the wizard creates the full and tlog backup, they are both on the share, but when it goes to restore the tlog it says...
June 4, 2013 at 6:47 am
The servers were listed in the SETSPN -L. Somehow the problem is resolved, we still aren't sure how. We removed and registered some of the servers in DNS...
May 30, 2013 at 2:47 pm
Brent Ozar has a good checklist for availability groups:
http://www.brentozar.com/sql/sql-server-alwayson-availability-groups/
May 28, 2013 at 12:14 pm
Have you tried union all? The columns just need to be the same, so you will need to add a dummy column of the same type to your second...
April 10, 2013 at 10:42 am
I should have been more clear, we use sql and litespeed to back up and then back up the backups to tape. So this would just be the secondary storage.
January 18, 2013 at 7:56 am
This is probably over kill, but if you might not have the same id in both tables this will give you all:
select a.id, a.e - a.f as Diff
FROM (select id,...
September 5, 2012 at 8:10 am
Unfortunately we have a mix of 2000 and 2005 here. We haven't moved anything to integration services yet. I was hoping to utilize some of the better 2005...
December 4, 2009 at 8:46 am
Viewing 15 posts - 31 through 45 (of 62 total)