Viewing 15 posts - 3,826 through 3,840 (of 7,496 total)
you could determine the max number of parts (e.g. 3) and write a left join statement to concatenate the 3 columns.
SELECT T1.FileData + coalesce(T2.FileData, '') + coalesce(T3.FileData, '')
from...
April 9, 2009 at 5:52 am
also check SSC (this site) for scripts "split function".
April 9, 2009 at 5:43 am
Eswin (4/9/2009)
Hi while creating the view you can use CHECK_OPTION to prevent insert and update option.Check out the example:
http://www.rampant-books.com/t_super_sql_129_check_option_view.htm
from BOL:
CHECK OPTION
Forces all data modification statements executed against the view...
April 9, 2009 at 5:32 am
Krishna Potlakayala (4/6/2009)
ALZDBA (4/6/2009)
San (4/6/2009)
Somehow I managed to install SQL2k5 with different instance name and logged using "machineName\instanceName". Now another problem is that, when I select " " option...
April 6, 2009 at 7:45 am
San (4/6/2009)
Somehow I managed to install SQL2k5 with different instance name and logged using "machineName\instanceName". Now another problem is that, when I select " " option in SERVER NAME...
April 6, 2009 at 7:17 am
For SQL2008 also have a look at Brians overview at http://www.mssqltips.com/tip.asp?tip=1714
April 6, 2009 at 2:58 am
Maybe Lynn Pettis can give you some nice advice regarding usage for schools.
https://www.sqlservercentral.com/blogs/user/Profile.aspx?UserID=13138
April 6, 2009 at 12:53 am
Thank you for the feedback.
April 6, 2009 at 12:38 am
Igor Makedon (4/3/2009)
Could you please help me with my problem:
Given:
Login: pacrat
User: pacrat with default schema: [pacrat]
view pacrat.tv (as select getDate())
BOL states that under these circumstances query...
April 5, 2009 at 11:55 pm
If you have (recent) backups (or the old files) of msdb, you should be able to restore it and your jobs will be back.
April 5, 2009 at 11:48 pm
Boolean_z (4/4/2009)
And this should be done just after installation...
April 5, 2009 at 10:14 am
wow ... msaccess with 20Gb data ??
also check "microsoft migration assistant for sqlserver" which if free at http://www.microsoft.com/Sqlserver/2005/en/us/migration.aspx
April 5, 2009 at 10:12 am
Your query returns duplicates !
SELECT adv.A_AdvertiserID
,'Mobile'
,ab.[Telephone2]
FROM [MSCRM].[dbo].[AccountBase] ab
JOIN [DIGADV].[dbo].[Advertiser] adv
ON ab.[Name] COLLATE DATABASE_DEFAULT = adv.A_AdvertiserName COLLATE DATABASE_DEFAULT
Solution ?
- Check PK on names ?? (In my home town we had 3...
April 5, 2009 at 10:08 am
We use this one at sql2000.
Select @@servername as Servername, getdate() as RunDate
/*
* Show members of serverrole sysadmind
*/
exec sp_helpsrvrolemember @srvrolename = 'sysadmin' -- =SA
go
/*
* show members of the...
April 5, 2009 at 10:00 am
indeed ... an authorzation issue to the linked server BRENTREPODB02.
How did you set up the linked server usage security ?
BTW: nice view ... using the mixture of right and...
April 3, 2009 at 1:51 pm
Viewing 15 posts - 3,826 through 3,840 (of 7,496 total)