Viewing 15 posts - 8,101 through 8,115 (of 9,641 total)
Max Mulawa (8/5/2008)
I think this is pretty brave advice to tell to replace clustered index on the table with nonclustered one. What about other queries, maybe it’s being used...
August 5, 2008 at 12:32 pm
It sounds like you could make this work. Without knowing what the errors are it is hard to suggest any solutions though.
August 5, 2008 at 12:27 pm
By using dynamic sql your parameters are going out of scope. If this is how you have to do things lookup sp_execute_sql in BOL and use it. ...
August 5, 2008 at 12:25 pm
The error is saying that some of your data IS being truncated which means that the length of either name or desc in the statecodes table is not set long...
August 5, 2008 at 12:21 pm
It sounds like you are not setup to be able to deploy reports to the Report Server. You need to get into Report Manager and make sure you are...
August 5, 2008 at 12:16 pm
tosscrosby (8/5/2008)
...Outlook was already installed so I now use SQL Mail, again, taking the easy way out...;)
Even with Outlook installed I wouldn't call using SQLMail the easy way out. ...
August 5, 2008 at 12:15 pm
Your code does not work because you reference the Insert table, which, unless you have created it in your database, does not exist. I think you want the virtual...
August 5, 2008 at 12:12 pm
At my last job we used XP_SMTP_SENDMAIL (http://sqldev.net/xp/xpsmtp.htm) on all our SQL 7 and 2000 servers so we could get away from SQL Mail except for alerts and failed job...
August 5, 2008 at 12:00 pm
You need to use a For Each loop container. Set the Enumerator to For Each File. Then you can apply a criteria for the file name like tr*.csv...
August 5, 2008 at 11:52 am
sonia (8/5/2008)
August 5, 2008 at 11:47 am
Check out this blog post:
http://zulfiqar.typepad.com/zulfiqars_web/2006/11/ssis_passing_pa.html
August 5, 2008 at 11:44 am
This is probably overly simplified, but here are the basics. Statistics are a histogram of the values in an index or column that the query optimizer uses to determine the...
August 5, 2008 at 11:13 am
The single quote " ' " is the string "wrapper" in SQL Server so whenever SQL Server encounters it, it thinks it is the start of a character string. ...
August 5, 2008 at 10:57 am
I don't know, based on your time in the field from your recently posted article, I feel like I need to show you proper respect and call you "Mister". ...
August 5, 2008 at 8:21 am
Jeff Moden (8/4/2008)
Jack Corbett (8/4/2008)
[font="Courier New"]sp_msforeachdb @command1 = 'Select table_schema, table_name, column_name, data_type from INFORMATION_SCHEMA.COLUMNS'[/font]
Here's an...
August 5, 2008 at 7:45 am
Viewing 15 posts - 8,101 through 8,115 (of 9,641 total)