Viewing 15 posts - 5,236 through 5,250 (of 6,395 total)
personally you should do this at the application layer
if you want or have no other choice than to do it at the SQL layer, take a look at cross-tabs or...
April 26, 2012 at 7:49 am
AX 2009 is a tricky beast to trace as its all mostly written in APICursors
The attached RAR file has a couple of documents in it in relation to planning your...
April 26, 2012 at 7:37 am
the error says its a unique index so I am guessing that the table being inserted has a unique index on the a column or selection of columns which is...
April 26, 2012 at 7:01 am
what is the definition of the index which is referenced in this error?
Cannot insert duplicate key row in object "table" with unique index "INDEX". The duplicate key value is ("VALUE").
April 26, 2012 at 6:57 am
whatever way you tackle the approch you will increase network traffic
linked servers will establish the connection to server1, then it will talk to server2 and server3 so in essence you...
April 26, 2012 at 6:43 am
it would seem like the value is duplicated on the linked server side
the below should bring back any values where the value is duplicated on the linked server
select value from...
April 26, 2012 at 5:28 am
i was looking through the threads a couple of days again and someone wanted an inventory of their SSRS server reports.
one poster pointed the OP to this url http://www.sqlservercentral.com/articles/Reporting+Services+%28SSRS%29/69257/
it contains...
April 26, 2012 at 5:08 am
you might want to look at creaing custom views in msdb which the user can then call which filters on jobs owned by the users SID
even if you grant to...
April 26, 2012 at 4:59 am
in essence replication is used to transfer data from one server to another
so do you only want to execute the search query once, on one server? if so you need...
April 26, 2012 at 4:41 am
take a look here http://msdn.microsoft.com/en-us/library/ms188283.aspx this will detail which one of the three roles to grant the user in to within the MSDB database, then set the owner of the...
April 26, 2012 at 4:04 am
speak to your exchange admins and ask them to add in the ip address of the server into the mail relay configuration, it needs to go into two places in...
April 25, 2012 at 4:22 am
figured it out
MetaData.value('declare namespace NS="http://core.company.com/MetaData.xsd"; (/NS:MetaData/NS:StateStandard)[1]','NVARCHAR(MAX)')
April 25, 2012 at 3:52 am
just one thing that I am not so sure on and might cause an issue
when you change from Simple to Full, before you can take a TX log backup...
April 25, 2012 at 2:55 am
from what I remember when I was looking at this
you need to look at the authentication methods needed for SSRS, will need custom or forms auth based, then you just...
April 25, 2012 at 1:26 am
load the log into a temp table then do a query against the date column
create table @errorlog (date, source, message)
insert into @errorlog exec sp_readerrorlog
select * from @errorlog where date >=...
April 25, 2012 at 1:18 am
Viewing 15 posts - 5,236 through 5,250 (of 6,395 total)