Viewing 15 posts - 4,576 through 4,590 (of 6,400 total)
@hein 50303
Unsure on PostgreSQL, you will need to see if it has tools like SSIS in SQL. If you have MS SQL on a different server, then just install...
June 21, 2012 at 4:27 am
SQL Server Intergration Services - Basically the new and improved DTS in SQL 2005 onwards.
June 21, 2012 at 4:21 am
Have you tried using SSIS with a web service task to query the website, then store it to a variable of type object, then use that variable as an insertion...
June 21, 2012 at 4:14 am
Edit
Duplicate post http://www.sqlservercentral.com/Forums/Topic1319084-359-1.aspx
June 21, 2012 at 2:29 am
SQL Licensing is version specific in a fashion, where you can downgrade but not upgrade.
So in this instance as you are upgrading from 2000 to 2005 you will need to...
June 21, 2012 at 2:20 am
The MSDB database will contain what you need especially the run duration column in sysjobhistory which is in seconds, then you just need to format it how you want it...
June 21, 2012 at 2:03 am
Log shipping is one way as you cannot modify data in ServerB while in a log shipping setup.
ServerA does the backup and stores the TRN file locally.
ServerB then opens a...
June 21, 2012 at 1:54 am
http://msdn.microsoft.com/en-us/library/ms186775.aspx
IDENTITY(1,1), means start at 1 (1,x) and add 1 (x,1) every time a new row is inserted
1
2
3
4
5
6
7
IDENTITY(100,200) means start at 100 (100,x) and add 200 (x,200) every time a new...
June 21, 2012 at 1:50 am
This should be a good read to get you started, but as everyone will say on this "It Depends"
June 20, 2012 at 3:23 am
The only way would be to loop it into a xp_logininfo call to query the members of the groups, or into a LDAP query which goes and looks up in...
June 20, 2012 at 2:30 am
SSRS is Windows only authentication, if you dont have System Administrator access to the reporting services webpage then you cant login via SSMS to Reporting Services.
June 20, 2012 at 2:28 am
have the new servers been granted the nessesary access on the mail realy (smtp) server to send mail?
the account might have access, but does the server?
June 20, 2012 at 2:26 am
I have a job which sends a mail when SQL Agent starts, only problem is if the agent isnt restarted when someone restarts the engine, but as its in a...
June 20, 2012 at 2:16 am
Viewing 15 posts - 4,576 through 4,590 (of 6,400 total)