Viewing 15 posts - 1 through 15 (of 51 total)
GRANT SELECT ON dbo.SampleTable(Column1) TO User1
July 6, 2011 at 12:54 am
If you have SQL Server Enterprise Edition I would pick Peer-to-Peer.
However, have you been successful in creating basic Transactional Replication when data flow only from publisher to subscribers? As...
June 30, 2011 at 4:20 am
With only SQL Server 2008 R2 Express Edition you can't really implement any of the H/A scenarios. See Compare Edition Features article for H/A scenarios that EEdition can be...
June 29, 2011 at 7:35 am
After you will add two articles, you can alway recreate subscription with 'no snapshot initialization'.
June 29, 2011 at 7:18 am
To get your publisher back online, you will have to
1. drop existing subscription
2. restore subscriber database to the publisher server with don't keep replication settings option
3. setup publication ...
June 27, 2011 at 2:50 am
Answering your question about training materials
SQL Server 2005
Kimberly Tripp record the whole series 'MSDN Webcast: A Primer to Proper SQL Server Development ' for SQL Sever 2005 developers, this is...
April 12, 2011 at 12:50 pm
I've checked your website and you are not offerint anything for free as far as I can see.
April 12, 2011 at 12:45 pm
I'm aware of at least two projects where NHibernate has been used successfully for a while now (2 years or more). Having a deep understanding of NHib internals is crucial,...
April 12, 2011 at 12:43 am
If you will change the structure of the tables (e.g. by replacing GUIDs with Int's) you will break Microsoft implementation of Membership, Role providers (stored procedures, permissions model, .NET implementation...
April 11, 2011 at 1:35 pm
Hi,
SSIS related questions should be posted on this forum (SQL Server 2005 Integration Services, http://www.sqlservercentral.com/Forums/Forum148-1.aspx).
1) If you are running SSIS package from SQL Agent you could configure JobStep to run...
April 11, 2011 at 1:24 pm
Or
DECLARE @result VARCHAR(50)
SET @result = (SELECT TOP 1 Student FROM #Table WHERE StudentID = 1)
SELECT ISNULL( @result, 'NO STUDENT EXISTS')
It's important to use SET operator (not SELECT), so that @result...
April 11, 2011 at 1:15 pm
SQL Server as a product has versions, you can view it by calling following functions.
SELECT @@VERSION
Could you be more specific to what version you are referring to, as schemas in...
April 11, 2011 at 1:05 pm
Hi,
SSIS related questions should be posted on this forum (SQL Server 2005 Integration Serviceshttp://www.sqlservercentral.com/Forums/Forum148-1.aspx)
Anyway, I guess that by Generic Windows Account you mean local account which is not a domain...
April 9, 2011 at 5:01 am
If 'Message' column has XML data type than you can construct XPath query to retrieve the error message.
Check following article on MSDN where you can find all kinds of queries...
April 8, 2011 at 3:52 am
CLR stored procedure is not encrypted, it's just the way it's displayed in the SSMS object tree. You can't dump code for this particular StoredProc as it's implementation is embedded...
April 8, 2011 at 3:04 am
Viewing 15 posts - 1 through 15 (of 51 total)