Viewing 15 posts - 136 through 150 (of 269 total)
Are the join predicates indexed in the underlying tables?
What does the execution plan show? Look for scans instead of seeks.
May 15, 2014 at 9:16 am
2. check for a trigger in child table with cascade option
May 15, 2014 at 7:02 am
I think it may be the only option....
May 14, 2014 at 8:32 am
That would work if I could export the embedded image to a file I can work with. How do you export an embedded image from SSRS to a file?
May 14, 2014 at 8:04 am
In Report properties, specify the maximum page size you want
May 13, 2014 at 9:50 am
Faster than what? FTP (and its secure cousin, SFTP) has been used for this sort of thing since 1971. Its the usual first choice.
May 13, 2014 at 9:48 am
So the numerics might have hyphens?
You can use LIKE with patterns. e.g.
WHERE somecolumn LIKE '%[0-9]%' AND somecolumn NOT LIKE '%[A-Za-z]%'
should match rows that have numbers but no alphabetical characters
May 13, 2014 at 9:06 am
This is kind of a trick question. The actual path is not stored in the schema at all. Rather the filetable path_locator is of data hierarchyid that identifies...
May 13, 2014 at 6:18 am
The error is here:
SET @Statement2 = 'database_principals.name = ''XYX''' <---Login account
Remove the less than sign (the '<')
May 12, 2014 at 11:03 am
Which of the subqueries are you having a problem with?
May 12, 2014 at 10:57 am
Koen Verbeeck (5/12/2014)
Another option is...
May 12, 2014 at 10:55 am
Set CanGrow to false and explicity set the row height. Worked for me!
May 12, 2014 at 10:44 am
Each step has a unique id. Combine that with the run_time and you should have a unique running instance
May 12, 2014 at 7:50 am
Have you tried joining on the sysjobs and sysjobschedules tables (on job_id)
May 12, 2014 at 5:56 am
Viewing 15 posts - 136 through 150 (of 269 total)