Viewing 15 posts - 181 through 195 (of 1,222 total)
If you add "WITH VALUES" to your ALTER TABLE ADD statement, it will put the default value in regardless of the NULL/NOT NULL setting...
USE tempdb;
GO
CREATE TABLE test (c INT...
August 21, 2014 at 10:25 pm
arnipetursson (8/21/2014)
One more question.If you do not have access to server B beyond db_owner in the database,
how do you ensure that the logins (server principals) are synced?
As db_owner, you cannot...
August 21, 2014 at 10:15 pm
sqlstunner (8/18/2014)
I have a 2008R2 Report Server and I have almost 40 reports, 10 DataSources and aorund 60 Datasets.
I got a new Server with 2012 and SQL Server 2012....
August 21, 2014 at 10:09 pm
for the report, go to the manage screen (mouse over the report and select Manage)
On the LHS of the screen, select "Security"
You should see "Revert to Parent Security" as an...
August 11, 2014 at 9:32 pm
You don't give much information so you can't really expect any detailed replies
Have a look at the MAX aggregation function
August 6, 2014 at 10:37 pm
Whilst you cannot use the same database, you may be able to distribute some of your load onto other servers using read only replicas - part of Availability Groups. ...
August 6, 2014 at 10:35 pm
Replication does not use linked servers. It uses various agents to move data around. Underneath the wrappers, these are actually EXE's that are normally run using SQL Server...
August 6, 2014 at 10:27 pm
ericjlawson (8/6/2014)
We have a LKP table that we will use to decode incoming codes from multiple sales feeds to link to the relevant surrogate key for the ultimate dimension table.
The...
August 6, 2014 at 10:20 pm
I am wondering whether you can use read only routing as per http://msdn.microsoft.com/en-au/library/hh710054.aspx
If you can, then all you need to do is to update the connection string - no need...
August 6, 2014 at 10:07 pm
pwalter83 (8/5/2014)
I need to custom sort a list of countries populated through SQL code. At the moment, it follows a A-Z sort as follows:
AUSTRIA
BALTIC
BELGIUM
BUFFER
CZECH REPUBLIC
DENMARK
FINLAND
FRANCE
GERMANY
IRELAND
NETHERLANDS
NORWAY
PORTUGAL
SPAIN
SWEDEN
SWITZERLAND
But I need the sort in...
August 5, 2014 at 11:16 pm
PRR.DB (8/5/2014)
In my local environment , i was setup transnational replication then i have added new article by using below script
EXEC sp_changepublication @publication = 'demo', @property =
N'allow_anonymous', @value='TRUE'
Go
EXEC...
August 5, 2014 at 11:13 pm
Dan Guzman - Not the MVP (8/5/2014)
Create script:
EXEC sp_addlinkedserver...
August 5, 2014 at 11:03 pm
Firstly - I haven't done this as yet but...
They should be - in the project properties, you set the folder that you want to deploy shared datasets to. So,...
August 5, 2014 at 10:48 pm
What version of SSRS are you using ?
If you are on SSRS 2008 R2, you can right click on one of the columns, select Series Properties and then click...
August 5, 2014 at 10:46 pm
A little more info on declaring variables (scalar and table variables) - whilst the example in this question is quite right and the loop does not attempt to create...
July 29, 2014 at 9:51 pm
Viewing 15 posts - 181 through 195 (of 1,222 total)