Viewing 15 posts - 1,381 through 1,395 (of 2,010 total)
Works for me on SQL 2000. What error do you receive?
October 3, 2008 at 9:38 am
A bit more sample data and perhaps some DDL would go a long way towards getting you an answer, helping us to help you.
In the meantime you may want to...
October 3, 2008 at 9:32 am
For a 10 digit phone number, I'm guessing it's already a character datatype and not an int so there would be no need to cast it. You can append...
October 3, 2008 at 9:27 am
Your other option would be to look into using SSIS...
You could specify a text file datatype and use SSIS to output and transform it however you need. it's very...
October 3, 2008 at 9:24 am
Guess I forgot to answer the original question...
SELECT cast(col1 as varchar(10)) + CAST (Col2 as varchar())
For the nulls you could use cast(isnull(col1,'') as varchar())
October 3, 2008 at 9:20 am
The only way to combine all of those types is to get them into a varchar datatype.
The real question is why do you need to combine the columns?...
October 3, 2008 at 9:18 am
This is somewhat convoluted, but it should work... though I don't think it would scale terribly well, it should get you moving in the right direction...
create table #test (
Date int,
Time...
October 3, 2008 at 9:01 am
This should be fairly straightforward, however I do have 1 question for you. The time portion, that looks like it might be the number of miliseconds or some other...
October 3, 2008 at 8:21 am
I've never had the opportunity to work in an environment where I've had to squeeze 10 ms out of my code to make a drastic difference. I've always maintained...
October 3, 2008 at 6:28 am
you could have a look at the below link and see if it fits the bill...
October 3, 2008 at 6:16 am
Right, the step never completes so it can't move to the next even using on completion...
October 2, 2008 at 6:09 am
Your problem is here...
- SQL Server Edition Operating System Compatibility (Warning)
Messages
* SQL Server Edition Operating System Compatibility
* Some components of this edition of SQL Server are not supported on this...
September 30, 2008 at 11:28 am
If you are looking for worst performers, you might want to take a look at setting up a profiler trace and then reviewing it. Just be careful a) where...
September 30, 2008 at 10:46 am
You may want to check for certain services starting/stopping as these will mostly be informational alerts. although you could also check that information through wmi or various other means...
September 30, 2008 at 10:40 am
More than likely the clones do some sort of compression on the large backup files, which is why something like Redgate's backup product or Litespeed or whatnot may offer some...
September 30, 2008 at 9:22 am
Viewing 15 posts - 1,381 through 1,395 (of 2,010 total)