Viewing 14 posts - 241 through 254 (of 254 total)
You can also try to use Profiler.
Choose Stored procedures:completed and TSQL:BatchCompleted events, select TextData, Reads, Writes columns. Save trace to a table. When you will finish tracing, you can query...
August 21, 2006 at 1:56 pm
The best way to debug function is to convert it to regular TSQL script. Comment -- create function, return, etc. Convert input parameters to variables - declare them. Run statements...
August 3, 2006 at 11:56 am
There is good salary survey in December 2005 issue of SQL Server magazine. They provide very comprehensive analysis by location, title, experience, by age, etc.
July 12, 2006 at 10:09 am
I would recommend you couple of tools:
1. You won't spend a penny for it. It is SQL Server diagrammer, in SSMS go to your database then click on Database Diagrams...
July 11, 2006 at 10:53 am
Hi Dinakar,
It's a good thing to do some research on a company prior to sending them resume. I do not know how it is in other parts of the world,...
July 11, 2006 at 10:19 am
Hi Yelena,
Thanks for pointing to this file, I found it in my path. However I did not find any references to the server names, I opened this file in Notepad...
July 5, 2006 at 3:30 pm
Thanks David and Jamie for your help.
I tested both methods and decided to re-create destination SQL Server table with nvarchar fields data-type (as opposed to varchar). Now it works fine.
Thanks,
Mark
June 7, 2006 at 11:54 am
grant
create procedure to role_name
revoke create table
May 5, 2006 at 10:14 am
sqlcmd is a new version of osql for 2005. osql is also supported for backward compatibility. As I mentioned before, you can use osql and in my case it worked...
May 5, 2006 at 9:15 am
Try this:
sqlcmd -d msdb -Q "execute sp_start_job 'job_name'" -S server_name -E
I also used osql instead of sqlcmd, works exactly the same.
May 5, 2006 at 7:45 am
I can recommend you two books for this:
1. Michael Otey. SQL Server 2005 New Features. McGrowHill Osborne. It is mostly summary describing each new feature.It is good jump-start if you...
May 3, 2006 at 2:13 pm
Thanks to all for your responses and tips.
The reason why I rarely run DBCC UPDATEUSAGE is because it takes about an hour to run - ut is very large table,...
December 30, 2005 at 8:27 am
Thanks for Save Change Script tip, I did not know about this.
But this is not exactly whah I want. The script that it generates shows "create table ..." without identity...
December 5, 2005 at 8:31 am
The reason why I want this hint is I suspect that we don't really need any indexes on this particular table (or maybe we don't need them for certain values...
November 30, 2005 at 4:37 pm
Viewing 14 posts - 241 through 254 (of 254 total)