Viewing 15 posts - 3,586 through 3,600 (of 9,643 total)
Have you read the articles, here[/url] and here[/url], and tried implementing some of the suggestions there?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 14, 2009 at 6:40 am
Are you only getting the error when you add the % column? What have you tried to troubleshoot the problem?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 14, 2009 at 6:26 am
DBCC REINDEX is a blocking operation. From BOL:
DBCC DBREINDEX is an offline operation. While this operation is running, the underlying table is unavailable to users of the database.
This...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 14, 2009 at 5:30 am
If emp is a table you will get exactly what you asked for, 10 for as many rows as are in emp.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 8:22 pm
I'd use SSIS to do it.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 7:19 am
Howard has provided a pretty good explanation. Use ISNULL when you only have 2 option, COALESCE with more than 2. They also handle data types and lengths differently....
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 7:12 am
Slick84 (12/11/2009)
Jack Corbett (12/10/2009)
Slick, you need 2008 R2 tools in order to see anything in the object explorer.
I'm running SQL Server 2008. Shouldn't I be able to see the objects...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 7:06 am
Is the value coming across as a string or an integer?
I'd do string manipulation. If it is an integer convert to string, then use the substring function to parse...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 7:03 am
What happens if you run the Reporting Services Configuration Manager? I'd be sure to run it directly on the Reporting Services server.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:58 am
As far as I know all that affects is the ability to use Kerberos to authenticate. This will cause issues if you have processes that have multiple hops.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:54 am
Sounds like the problem is more likely IIS server performance than SQL Server performance.
I'd also recommend checking the PerfMon counters under SQL Server:Locks object like Lock Waits/Sec, Lock...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:52 am
You'd use Move-Item to move the files. Like this:
get-ChildItem -include *.txt -recurse | select-String -pattern "Msg","Level"|Move-Item -destination [path]
I don't know how to email the files in PowerShell, but...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:47 am
Doesn't really matter as the the SQL Server services will start and stop gracefully. The difference is that you will get faster reboots if you don't have all the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:43 am
DMO is a method of manipulating SQL Server objects using .NET. This is pre-SQL Server 2005. You would need to determine what is being done by the application...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:37 am
I have not yet used the CLR. As Grant mentioned I would bet more people on 2008 are if you include the Spatial and Hierarchy data types which are...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
December 11, 2009 at 6:06 am
Viewing 15 posts - 3,586 through 3,600 (of 9,643 total)