Viewing 15 posts - 7,996 through 8,010 (of 9,641 total)
I think you have a typo in the test data because I think you wanted the data in the first insert of fromtable to match the last insert of @totable,...
August 11, 2008 at 9:43 am
You can't use {} without the oj. I just learned this by trying it in SSMS and without the oj it throws an error. It is ODBC outer...
August 11, 2008 at 9:32 am
There are several products out there that are designed to help manage SQL Servers. You can check out RedGate, Idera, SQLSentry, SYmantec has its i3 product.
Have you looked at...
August 11, 2008 at 9:25 am
It looks like you have data in the child table that does NOT exist in the parent table. Meaning you have an invalid entry in Historical_Propertys.Prop_Manager_ID.
August 11, 2008 at 9:18 am
Most folks try to answer in a timely fashion, of course, that depends on when we get on.
I think the Workgroup edition will have it because Database Mail is built...
August 11, 2008 at 8:43 am
I don't think there is a way because paging is determined after the report has been processed. I tried using ReportItems("txtPage").Value, but since the page number is not created...
August 11, 2008 at 8:33 am
I'm pretty sure that all versions of SQL Server 2005, including Express, include Database Mail.
But, it sounds like you are looking for a MAIL SERVER and database mail...
August 11, 2008 at 8:13 am
I would think there is less room for error by having fewer steps so I would do it in the dump from staging to production. Unless you have instances...
August 11, 2008 at 8:09 am
This is column 13 in the first select of the union:
cast(con.WNS_ID as varchar),
And notice that you do not provide an alias. If you provide an alias the create view...
August 11, 2008 at 8:05 am
Either of the other suggestions will work, but I would agree with Steve because INFORMATION_SCHEMA is an ANSI standard while sys.procedures is a Microsoft view that could be deprecated or...
August 10, 2008 at 6:35 pm
There are several ways to move a database. You can put the database in single user move and detach the db, copy the mdf to the other server, and...
August 10, 2008 at 6:28 pm
That's a fair trade. I thought you knew about this already because I learned about it from a thread that I think you were in along with Matt Miller....
August 8, 2008 at 9:20 pm
Great I'll take a look either over the weekend or on Monday morning.
August 8, 2008 at 6:12 pm
This isn't exactly a better way to handle the problem you encountered, but may be a better way to manage security so it is less of an issue. Use...
August 8, 2008 at 3:28 pm
Sure you can execute multiple statements in an Execute SQL Task. I usually put a GO between them, but you don't have to. The only issue is that...
August 8, 2008 at 3:25 pm
Viewing 15 posts - 7,996 through 8,010 (of 9,641 total)