Viewing 15 posts - 16 through 30 (of 43 total)
You can also use SET SHOWPLAN_TEXT ON option instead of graphical view.
July 27, 2010 at 2:11 pm
Looks like your Log file is not at the same location where your Data file is. By default it looks for log file location where your data file is, though...
July 14, 2010 at 9:15 am
You could use import export wizard or
Change the following query for inserts
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=c:\test.xls', Sheet1$)
July 12, 2010 at 10:10 am
I agree with everyone SQL DBA + SSIS +SSRS
July 12, 2010 at 9:57 am
With a (textID,TypeText) as
(Select t.textid,T2.Typetext from test t left join test t2 on t.ID=t2.ID where t2.typetext='Agree'),
b (textID,TypeText) as (Select t.textid,T2.Typetext from test t left join test t2 on...
July 12, 2010 at 9:46 am
Just curious to know if you found the solution.
July 9, 2010 at 1:15 pm
Try changing the TCP port number of named instance and see it that works.
July 8, 2010 at 9:10 am
Try this
WITH ObjectLevelPermissions(ObjectName,ObjectType,GranteeName,GrantorName,[SELECT],[DELETE],[INSERT],[UPDATE],[EXECUTE],[VIEW DEFINITION]) AS
(SELECT ObjectName,
ObjectType,
...
July 8, 2010 at 8:09 am
Try giving Select permissions on Filtered Views. Microsoft recommends to query Filtered views in CRM rather then tables directly.
July 8, 2010 at 8:04 am
We use CTE's in our environment for 'on the run' queries where code is most likely not going to get repeated. For one time use, we do not want to...
July 8, 2010 at 7:55 am
Rename SRV1\A to SRV1\C and then rename SRV2\A to SRV1\A. Try if this works
July 6, 2010 at 2:35 pm
Not sure if this helps
SELECT t1.TABLE_NAME,
FILEGROUP_NAME(t2.groupid) as FileGroup
FROM INFORMATION_SCHEMA.TABLES t1
INNER JOIN sysindexes t2
ON OBJECT_ID(t1.TABLE_NAME) = t2.[id]
July 6, 2010 at 1:18 pm
Viewing 15 posts - 16 through 30 (of 43 total)