select * from sys.servers
exec sp_dropserver 'oldname\SQLEXPRESS'
exec sp_addserver 'newname\SQLEXPRESS',local
local is important, beacause without depricated
local ist wichtig ansonst en ist add_server depricated
meine Sys/Db admin & Developper Notitzen - wer Rechtschreibfehler findet darf sie behalten ... my Sys/Db Admin and developper notes - I don't care about typos
Wednesday, January 20, 2016
Monday, January 11, 2016
oracle free sysaux tablespace
select dbms_stats.get_stats_history_retention from dual;
exec dbms_stats.alter_stats_history_retention(10);
--delete old statistics
exec DBMS_STATS.PURGE_STATS(sysdate -10);
further info:
Friday, January 08, 2016
SSRS Reportitems to access Textbox Values
SSRS Sql Server Reporting Services:
How to access Values of Textboxes in expressios...
Werte aus Textboxen in Expressions referenzieren
Reportitems!B5_CA204.Value
How to access Values of Textboxes in expressios...
Werte aus Textboxen in Expressions referenzieren
Reportitems!B5_CA204.Value
Thursday, January 07, 2016
Sql Server Reporting Services SSRS: LOOKUP Simple Example - einfaches Beispiel
simple Example:
Lookup("searchstring",KeyColumn,ValueColumn,"Datasetname"):
=Lookup("Key1",Fields!DataKey.Value,Fields!DataValue.Value,"AllDataItems")
searchsring can also be expression, but
other expressions:
=IIF(Count(Fields!MA.Value)>1,"Red","No Color")
Lookup("searchstring",KeyColumn,ValueColumn,"Datasetname"):
=Lookup("Key1",Fields!DataKey.Value,Fields!DataValue.Value,"AllDataItems")
searchsring can also be expression, but
other expressions:
=IIF(Count(Fields!MA.Value)>1,"Red","No Color")
Subscribe to:
Posts (Atom)