Viewing 15 posts - 16 through 30 (of 105 total)
Don't agree with this answer for the same reason most people are talking about. You can define a primary key on a table variable which technically creates an index but...
June 25, 2012 at 11:57 am
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near (This represents items 1,2,3 as True, 4,5 as False.
Nice Question.
June 5, 2012 at 9:07 am
Not sure if or where it might be but I had the results to text include a lot of extra non printable data. Where if I opened it ( Been...
June 1, 2012 at 2:20 pm
If the table is not too large I would reinitialize the subscription on Server2 with a new snapshot. This will allow it to be synced together.
The distributor will not...
June 1, 2012 at 1:57 pm
Are you trying to rollback data or code in the database?
There are several ways other than a backup however a backup is typically what I take before I push...
June 1, 2012 at 1:35 pm
mw112009 (5/22/2012)
Unfortunately it does not allow you to select one or few tables for scripting. ( See attached JPG file )
Our database has more than 2000 tables...
May 22, 2012 at 12:19 pm
Does this same behavior happen when you simply restart SQL Services without changing Nodes?
May 21, 2012 at 3:10 pm
db_owner is required for the specific databases but I am pretty sure they cannot add a distributor and turn the option on for the database to be published. Once those...
May 21, 2012 at 2:20 pm
It sounds like you are logged into the server directly, is this correct?
I don't typically log into the server. I run SSMS from my desktop and connect to the servers...
May 21, 2012 at 2:02 pm
I might be misunderstanding your issue. The issue you are having is that you don't want to install SQL Server Managment studio 2008 on you local machine? What version of...
May 18, 2012 at 2:39 pm
One other way that it could be done as well is
select status, count(status) as total, (select count(*) from table) as alltotal
from table
group by status
May 18, 2012 at 2:21 pm
Yes, it will need a different file name.
logical file name tempdb_data1, physical file name T:\tempdb_data1.ndf
logical file name tempdb_data2, physical file name T:\tempdb_data2.ndf
etc...
May 18, 2012 at 2:06 pm
dan_g (5/18/2012)
For example: The file lands on
E:\Folder1\Filename_yyyymmdd_hhmmss.txt
and...
May 18, 2012 at 1:48 pm
One of the things I have seen done is pass it in as a string with all the values seperated by commas and have the procedure either parse it accordingly,...
May 18, 2012 at 1:31 pm
We had the same issue. I want to say it is the communication between the witness and the Principal. If there is a small delay that might cause a timeout...
May 18, 2012 at 1:21 pm
Viewing 15 posts - 16 through 30 (of 105 total)