Viewing 15 posts - 1,006 through 1,020 (of 7,168 total)
Are these users developers? Or the end users drawing from the cubes for reporting?
June 9, 2013 at 5:20 pm
Note that xp_dirtree is an undocumented stored procedure.
To find the newest file added to a folder using SSIS a Script Task might be the simplest way.
Some sample pseudo code
Dim latestFile...
June 9, 2013 at 4:38 pm
Check your report data sources and how they're configured on the server. Make sure they are using SQL Authentication.
June 9, 2013 at 4:12 pm
Where is the database server you'll be selecting from? The date needs to be from the perspective of the data in that database. You could always change it to a...
June 9, 2013 at 3:56 pm
Just to drive the point home, consider what would need to be tracked at the database level if a query were issued that joined tables from multiple databases.
Trace can...
June 8, 2013 at 9:21 pm
Yes. Lookup BACKUP DATABASE and RESTORE DATABASE statements in Books Online.
June 8, 2013 at 9:09 pm
The one time I have seen someone use one scheme and function for many tables they inevitably regretted doing so when it came time when they needed to change how...
June 8, 2013 at 8:34 pm
You could also be experiencing blocking. Run one proc now and a statement within it might be blocked for some reason and the proc could take 30 seconds. Run that...
June 8, 2013 at 3:17 pm
Just to add to what Lowell said, float has a higher data type precedence than varchar so when you compare, or join as you are doing, two columns with different...
June 8, 2013 at 12:06 pm
Maybe not stop, try clearing the trace, that will definitely force a flush to disk.
June 8, 2013 at 10:37 am
sudhakara (6/7/2013)
Does SQL server 2008 R2 support UTF-8 character encoding ?Thanks.
No, not natively. SQL Server supports UCS-2 which is a subset of UTF-16 for Unicode data. In 2012 there is...
June 8, 2013 at 10:22 am
Trace results are buffered so yes, sometimes there will be captured results that have not yet been written to the file. Check the column "event count" in sys.traces to see...
June 8, 2013 at 9:38 am
crookj (6/7/2013)
opc.three (6/7/2013)
The Dixie Flatline (6/7/2013)
bladeSnipes
Snipe Hunt
Cheers
June 7, 2013 at 1:21 pm
Tab Alleman (6/7/2013)
•Truncated text. When...
June 7, 2013 at 9:25 am
Viewing 15 posts - 1,006 through 1,020 (of 7,168 total)