Viewing 15 posts - 4,576 through 4,590 (of 6,398 total)
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
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
Well if you know you have 30GB free, then specify a size of 63GB as SQL will try to get it down to 0 or as close to it as...
June 15, 2012 at 4:31 am
Viewing 15 posts - 4,576 through 4,590 (of 6,398 total)