Viewing 15 posts - 16 through 30 (of 40 total)
It is possible to read in a tab-delimited file into SQL Server. However, your sample file seems to be missing end-of-line characters? If you can define an end-of-line marker...
October 10, 2008 at 9:14 am
This is quite easy to do... I hope you're here to learn and not just get homework assignments 😉
In a business world, we often do not have the choice to...
October 10, 2008 at 6:57 am
Something doesn't make sense.
You say you are trying to "report on the Transaction Log Shipping Status on the Primary Server". This leads me to believe you are just doing...
October 8, 2008 at 11:25 am
Cool! I'm about ready to say SSRS with Sharepoint is a viable application platform...
October 3, 2008 at 5:55 pm
If getting the data is easy, then I would think you could add sub reports to your main report. Or you could use Data Grouping. Highlight an entire row of...
September 30, 2008 at 9:24 am
So you're looking for something like this?
Clever Title 1
Detail 1
Detail 2
Task 1
Task 2
Task 3
Measure 1
Measure...
September 30, 2008 at 8:31 am
What reporting tool are you using? I don't see anything here that can't be done through the source T-SQL query.
September 30, 2008 at 8:06 am
Sakthi,
I'm curious to know the resolution to this, as the CNAME alias is typcially part of my suggestions for failover, but I've never had the chance to experience a failover...
September 25, 2008 at 8:15 am
Do the following two select statements return the same name?
SELECT @@servername
SELECT SERVERPROPERTY('servername')
That's about as much as I can help...
September 24, 2008 at 10:33 am
I'd start by running the "SQL Server Client Network Utility" (should be in Start menu) on both servers to see what protocols are enabled. Perhaps Named Pipes is off...
September 24, 2008 at 8:15 am
Here's one possible sample solution using 2 values in a comma-separated variable. You can run this against any database. You'll want to add checks for empty strings passed in, as...
September 24, 2008 at 7:00 am
MS VS 2005R2... SQL 2000 and 2008 seem to work well enough for testing things out.
September 23, 2008 at 2:01 pm
Perry Whittle (9/23/2008)
bkDBA (9/23/2008)
SQL Server on a VM can be VERY slow due to poor VM I/O performance. My VM I/O is about 8 times slower than my production hardware.
what...
September 23, 2008 at 1:39 pm
But I'd really like to do this using SQL as much as possible, Do you know if I'd be able to use a case statement using an 'in' and 'like'?
That's...
September 23, 2008 at 11:02 am
I'd be careful of this on a VM. Be sure that you have strong IO paths setup.
Great comment! SQL Server on a VM can be VERY slow due to...
September 23, 2008 at 9:27 am
Viewing 15 posts - 16 through 30 (of 40 total)