Viewing 15 posts - 1 through 15 (of 60 total)
Seems there is no proper way to do this ...
February 18, 2010 at 11:53 am
Thanks for your reply. I will test the possiblity of creating a proc, lets see if it work with no extra permission.
Jobs like SSIS execution etc. can be used...
February 18, 2010 at 11:51 am
GilaMonster (1/25/2010)
If a table is on a filegroup with multiple files it'll be striped across all the...
January 25, 2010 at 9:51 am
The above statement is half true. Its actually allowed, but discourages to be used and you should be extra careful using it, you may end up corrupting your whole sql...
January 19, 2010 at 10:27 am
No one interested in discussion !! :doze:
November 18, 2009 at 6:29 am
You are getting error while trying to see the history or this is the error logged in job history. Both are different scenarios . Please clarify. I think your job...
August 30, 2009 at 1:41 pm
I think below link will help
http://www.visualbasicscript.com/m26619.aspx
You have to work around to customize this.
August 30, 2009 at 6:50 am
Set the windows login policy for local computer and then make the sql login with enforce password policy (as described in posts above).
SQL Server will take password policy (like...
August 30, 2009 at 6:20 am
DBArtisan, Rapid SQL, AquaStudio and several third party tools can be used to administer sql servers of all editions.
August 30, 2009 at 6:14 am
We have all these databases running on same instance.
In my opinion, having single databases running on different instances and they all on same server, will decrease the performance...
August 30, 2009 at 6:12 am
If possible rebuild the indexes and then update statistics. Or just update statistics will help.
August 30, 2009 at 5:51 am
You can get job logs from msdb..sysjobhistory table
Modify the below code with your need
select b.name, run_date, run_time , message from msdb..sysjobhistory a, msdb..sysjobs b
where a.job_id = b.job_id
and...
August 30, 2009 at 5:43 am
Also check carefully bootstrap log (like C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG), if you are not getting any error message while installing.
April 22, 2009 at 8:31 pm
Although not sure about it but default collation for mysql is not English its Swedish. Please check collation of all tools involved (MSSQL, sqlDump and MySQL).
For workaround, you can...
April 22, 2009 at 8:28 pm
Viewing 15 posts - 1 through 15 (of 60 total)