Viewing 15 posts - 151 through 165 (of 372 total)
Run that in a query window to get the statements that are represented.
For example, running this query using a truncated piece of your binary value:
[font="Courier New"]SELECT CAST(0x4445434C41524520405420 AS VARCHAR(MAX))[/font]
Returns this:
[font="Courier...
June 24, 2008 at 10:35 am
SELECT CAST(0x4445434C41524520405420 AS VARCHAR(MAX))
Make sure the binary representation has an even number of characters before decoding.
June 23, 2008 at 1:51 pm
Mike Good (6/21/2008)
June 21, 2008 at 4:34 pm
Andy,
First thing I'd do is run a DBCC CHECKDB against the databases you're backing up.
Second, since this started occuring recently I'd be looking at anything that was updated recently, such...
June 21, 2008 at 12:16 pm
The simplest option, but maybe not the best, is to change how error rows are handled.
On the Flat File Source, select the Error Output. In the Error column for DOB...
June 20, 2008 at 2:40 pm
NSort for SSIS might be of interest too. I haven't used it but the posts and articles I've read have been positive.
June 18, 2008 at 12:53 pm
One problem with HASHBYTES that might make it of limited use is it doesn't support more than 8000 bytes for input.
If interested, you can vote on this issue at Connect:...
June 17, 2008 at 4:17 pm
Here's an example of using ADO.NET to start a stored procedure; built in Visual Studio 2005.
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.Data;
namespace ConsoleApplication1
{
class Program
...
June 17, 2008 at 3:40 pm
Using Instant File Initialization in SQL 2005 should bring the creation time down significantly. If it's not enabled, zeros are written to the data and log files when initialized.
To...
June 13, 2008 at 4:10 pm
In addition to specifying the wildcard character as a literal there's also the ESCAPE clause that can be used.
SELECT * FROM myTable WHERE column1 LIKE '%/%%' ESCAPE '/'
June 13, 2008 at 9:23 am
Querying the XML plan directly could help focus in on parts of that plan to look at.
-- Load the plan into an XML variable
DECLARE @xml XML
SELECT @xml = BulkColumn
FROM...
June 9, 2008 at 7:29 am
This is how we do that from workstations on the same domain. Never tried it from a computer that wasn't on the domain so it may not work in...
June 6, 2008 at 4:42 pm
If you save the execution plan and attach it to a post someone might point something out; In the Excution plan window, right-click and Save Execution Plan As...
Also, have a...
June 6, 2008 at 2:43 pm
jenelle.hilemon (6/4/2008)
June 4, 2008 at 2:37 pm
Viewing 15 posts - 151 through 165 (of 372 total)