Connect SharePoint and Microsoft Outlook [closed] - sharepoint-2010

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm a newbie to Microsoft SharePoint Server 2010. Can you please help me with this assignment:
Users wish to enter through the Microsoft Outlook planned absence so
that they will enter them in the calendar, which they will access
directly from Outlook. After entering the predicted absence of the
absence of such a view is their superior, who must approve or reject
the absence. Different employees have different superiors, so pairs
should be "employees" -> "superior" entered into a separate table in
SharePoint, which can be edited by the administrator, workflow validation must
find the appropriate supervisor for confirmation/certification in this table. The
result (absence of confirmed / denied) must be sended an email to the employee,
while the superior must get get e-mail in CC.

It sounds like you have a calendar which is connected to outlook. When user adds new entry in outlook, that entry is added to the SharePoint calendar. In SharePoint you can start a workflow on Item Added on a calendar list. This workflow will do logic to kick of emails , approve/reject.

Related

Auto Delete Of Data From Database After A Fixed Time Interval? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am using sql server 2005. In my project i wanna auto delete the data from the database after a fixed interval of time say (10 minutes); Is there any automatic process to delete the data from the database without the user intervention.. I want to use the event scheduler i have created a event scheduler but its not working any help ???
this is the event i have created.
CREATE EVENT deletedata
ON SCHEDULE
EVERY 10 MINUTE
DO
DELETE FROM user WHERE id=1
just go through the link Microsoft schedule Jobs
Expand the SQL Server Agent node and right click the Jobs node in SQL Server Agent and select 'New Job'
In the 'New Job' window enter the name of the job and a description on the 'General' tab.
Select 'Steps' on the left hand side of the window and click 'New' at the bottom.
In the 'Steps' window enter a step name and select the database you want the query to run against.
Paste in the T-SQL command you want to run into the Command window and click 'OK'.
Click on the 'Schedule' menu on the left of the New Job window and enter the schedule information (e.g. daily and a time).
Click 'OK' - and that should be it.

How to unlock superuser 'postgres' account in postgresql [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
While connecting to the pgadmin database postgres with correct password, I'm getting the following error:
'Error connecting to the server:FATAL password authentication failed with user 'postgres'.
After changing the method to 'trust' instead of 'md5' in hba config file, and then typed:
ALTER USER POSTGRES WITH PASSWORD 'newpassword'
after again changing the methods as md5 then tried connecting to database
Howerver the password changed successfully (I checked in encrypt mode and it was fine) but getting the same issue:
'Error connecting to the server:FATAL password authentication failed with user 'postgres'.
Kindly suggest me if there are any other solution for this issue.
This suggests to me that either you are authenticating against an outside source (not common) or somehow you have been bitten by a bug in pgAdmin that set validto to an invalid date (more common).
Try this:
ALTER USER postgres VALID UNTIL 'infinity';
Or you can set the valid until value to something more limited if you want to lock the account after a certain time period.

How to copy structure of database in another database in sql server 2008? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
i have a database and want to copy all the tables in new database without copying the dat of all those tables only structure should be copy
SQL Server Management Studio offers the following:
Scripting the whole database:
Under the Object Explorer, right mouse click on the database and then select Script Database as
To script just (specific) tables:
In Object Explorer, right mouse click on the database, select Tasks, then Generate Scripts, and then select the tables that you want.
You can then use the script to create a new database / new objects elsewhere. If you change the name of the database, remember to change the USE xxx statement(s) accordingly.
In SSMS for your first database right click on the datbaase name then "Script Database as" > "CREATE To" then choose your output location and run your script.
Edit:
Note you will need to amend the script to specify the new database name, replacing the existing one in the generated script (courtesy of Oded comment).
In the SQL server Management Studio you can right click the database -> tasks -> export data. Then follow the wizard..

I can't login with a user I created in sql azure [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I created a login and a user in sql azure but i'm not able to login...
I can connect only with the administrator account...
How do I login with the user I created?
I've been struggling with this too, and after some research it appears that only LOGINS can login. A User (created in a specific database, from a login) is only a "persona" that a login assumes when accessing that particular database.
So, again, you can't login as a User, only with a Login. If your intention is to somehow create restricted access to a specific database then you need to do some work: I'm currently looking at the following article:
http://blogs.msdn.com/b/benjguin/archive/2012/01/21/sql-azure-create-a-login-that-has-only-access-to-one-database-sql-azure-cr-233-er-un-login-qui-n-a-acc-232-s-qu-224-une-base-de-donn-233-es.aspx
HTH.
If you're trying to use SQL Server Management Studio you need to specify the database that you want to connect to (Login screen -> Options -> Connection Properties) as by default new logins do not have access to the master database which SSMS will try to open if a database is not specified.
Windows Azure SQL Database security works mostly like standard SQL Server, in that you have to ensure that you have a server login created for that user, as well as a user created in the database linked to the login. Look at the Docs for more information to make sure you aren't missing a step: http://msdn.microsoft.com/en-us/library/windowsazure/ee336235.aspx

Documentation for Jasperserver [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I installed Jasperserver in my PC using the Bitnami installer. It automatically installed MySql along with Jasperserver. Now I am lost on how to proceed in getting my data in and start generating reports. Is there any good documentation(I do not want to buy their paid documentation) available on the web?
Thanks...
Jasperserver is mainly an application to manage and administer your report resources. It helps in making reports more accessible and provides an web-interface to manage and execute the them. For this purpose it comes with its own mysql-based repository that is used to store metadata about your reports. This repository is completely unrelated to your actual report data, which might come from a variety of different sources such as mysql-datasources, mondrian-datasources, xmla-datasources, oracle-datasources, etc. The repository stores for example:
report database connections
image resources used by the report
report parameters along with user input controls, that are used in the web-frontend to parameterize your report execution
the report definition in XML
...
For the creation of the actual report you use iReports, which can connect to the jasperserver to get all the aforementioned metadata information. You then design your report
using the parameters and the datasource provided by jasperserver. On completion you upload your finished report to jasperserver. From there you can execute it and display the result in either HTML or alternatively export it to PDF, XLS, etc. Jasperserver also takes care of the scheduling of reports at a given time.
In your concrete case you would probably do the following steps:
log into the jasperserver webadmin interface (jasperadmin:jasperadmin by default)
Create a database connection resource in the repository that points to your report datasource (can be oracle, mysql, postgres, ... ).
Create a new report resource, and set the connection to the one you just created
fire up ireport, connect it to you jasperserver instance and open the report from the repository
design your report in ireport
upload your report back to jasperserver
execute the report via jasperserver's web-interface
more information under http://jasperforge.org/projects/jasperserver/docs
There is a whole bunch of documentation in the docs folder of the binary distribution. Also you have to understand that your data will not be in jasperserver. It can report off data in your database (whichever that is).
I would install iReport, start tomcat (and therefore jasperserver), connect to it in iReport and create a report.
http://community.jaspersoft.com/documentation
You probably have to sign up to download.
p/s : Well you know what, let me introduce you to my best friend. He always help me with this such things --> Mr.Google.