Viewing 15 posts - 181 through 195 (of 549 total)
I do not believe so
If I recall correctly
ReportServerTempDB exists because it's used as temp table/db by the Report Server, especially snapshots
it doesn't use the native tempdb that's session-only
so there is...
December 11, 2008 at 2:15 pm
I'd suggest trying a different port
I thought port 1434 is used by SQL Browser, but that's UDP
On startup, SQL Server Browser starts and claims UDP port 1434
December 11, 2008 at 8:47 am
Red Gate SQL Compare (along with free Snapshot utility)
or xSQL Object
or script out the database and compare in VersionControl system
etc...
December 11, 2008 at 8:37 am
Lazy me, I setup SQLH2 (from Microsoft) to collect it for me, both the WMI perf counters and SQL stats
December 11, 2008 at 7:58 am
This is what I got from SSMS 2008, similar idea
I usually always use the SSMS to configure full-text (right-click on the catalog to configure, or right-click on the table the...
December 11, 2008 at 7:55 am
Interesting, this week I tried shrinking tempdb data & log to clear up some space (just trying for fun, as restarting SQL Server was more difficult to achieve). Data is...
December 11, 2008 at 7:51 am
Are you asking how to grab your own Domain name, or other users?
If you're logged in as SQL authentication mode, I don't see how it call your domain info
If I'm...
December 11, 2008 at 7:49 am
I would entertain using
1. SSIS with built in FTP tasks
2. xp_cmdshell with external batch file (say ftp_upload.bat)
therefore you edit all FTP operations in the batch file, independent of T-SQL
December 11, 2008 at 7:45 am
I always assume it means empty string
'' = EMPTY (not the same as NULL)
' ' = 1 space
December 11, 2008 at 7:44 am
I know in SQL 2000 there are some tables
In 2005/2008 I am not certain
but Maint. Plans will be stored in MSDB, if you log in using Integration Service you'll see...
December 10, 2008 at 1:13 pm
This probably belongs in the SSIS 2005 forum?
December 10, 2008 at 1:12 pm
It's most likely you have to call the batch commands to check for the text file regularly, then if found, run the job
http://www.kodyaz.com/articles/read-text-file-using-xp_cmdshell.aspx
December 10, 2008 at 1:03 pm
Jeffrey Williams (12/9/2008)
Jerry Hung (12/9/2008)
Select db_name()
,object_name(s.object_id) As ObjectName
...
December 10, 2008 at 11:30 am
2 options for restoring LS DB on the Secondary Server
NORECOVERY mode - it's not accessible, period, continues to restore future TLOGS
STANDBY mode - read-only, continues to restore future TLOGS
Log Shipping...
December 10, 2008 at 11:21 am
I think a clear flow of business logic would help here
how did you come up with the order below?
1 Heading1
2 SubHeading1
6 SubHeading3
7 SubSubHeading1
3 DetailA
4 SubHeading2
5 DetailB
9 Heading2
10 SubHeading4
11 DetailC
December 10, 2008 at 11:10 am
Viewing 15 posts - 181 through 195 (of 549 total)