Viewing 15 posts - 406 through 420 (of 2,486 total)
Ok here is a quick solution, no guarantee that it's the best or most efficient
declare @dte datetime declare @dob datetimeset @dte...
March 21, 2006 at 5:31 pm
The function provided by Ray works. You need to add a GROUP BY to the SELECT statement though.
EG:
SELECT [id], dbo.fn_ConcatStrings ([id]) from mytable group by id
will give you
1 aaa 2 bbb 3 ccc,ddd 4 eee 5 fff,ggg 6 hhh
March 21, 2006 at 4:56 pm
Check sp_changedbowner in Books Online.
March 21, 2006 at 4:47 pm
That would be sp_change_users_login.
You still need to have the logins on the development server though.
March 20, 2006 at 7:31 pm
The page splitting will only occur if you have the uniqueidentifier as a clustered index. A Primary Key does not necessarily need to be a clustered index. That's just the...
March 18, 2006 at 12:32 am
Here is a list that's a mixture of applications and embedable controls,
http://www.devdirect.com/ALL/REPORTING_PCAT_1897.aspx
March 7, 2006 at 11:24 pm
If you're importing data into SQL Server you should look into using BULK INSERT instead of BCP as it is quicker.
March 7, 2006 at 11:00 pm
March 6, 2006 at 2:40 pm
March 6, 2006 at 2:38 pm
Check Windows Event log for any error messages.
Check to see if the SQL Server service is running.
March 6, 2006 at 2:35 pm
Ok, gotta join this party
Windows VirusScan 1.0 - "Windows found:...
March 6, 2006 at 6:06 am
I'm with Jeff, this doesn't need a function(s), although I'd attack it a bit differently.
CHARINDEX finds your first space and gives you Firstname, REVERSE & CHARINDEX will give you the...
March 6, 2006 at 5:45 am
It's amazing what can be found in Books Online and Google when one takes the time to look
March 6, 2006 at 5:45 am
Viewing 15 posts - 406 through 420 (of 2,486 total)