Viewing 15 posts - 6,271 through 6,285 (of 7,168 total)
gordon.davis (6/2/2011)
I'm looking for is their any Best and Easy possible way of it.
I think you have all the bases covered but you'll have to be more specific about what...
June 2, 2011 at 1:03 pm
Try thinking of it this way:
An Excel Workbook is a database and a Worksheet is a table. An .xls/.xlsx file is not the same as a flat file and SSIS...
June 2, 2011 at 12:13 pm
It sounds like the process you have thought up will work...are you not happy with some aspect of it?
June 2, 2011 at 12:03 pm
Need more info. Please post DDL for tables, DML for test data, queries you have tried so far and expected results.
Reference: http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
June 2, 2011 at 11:39 am
Gary Noter (6/1/2011)
I have a Windows environment wherein there is no domain.
We're all in the same 'Workgroup'.
Server A has IIS and uses SQL Login (username/password) to connect to Server...
June 2, 2011 at 10:39 am
You'll be better off writing your own SELECT statements against the DMVs to get only the information you really want. Here is a good place to start:
USE master
GO
EXEC sys.sp_helptext
...
June 2, 2011 at 10:32 am
Just a thought...if your main pkg is too noisy to kick off straight away then you could create a parent pkg to contain a File Watcher and an Execute Package...
June 2, 2011 at 10:24 am
I agree with Laerte, PowerShell's Get-Service will give you more control and IMHO is the right tool for the job.
http://technet.microsoft.com/en-us/library/dd347591.aspx
However, if you must do this through T-SQL, you can use...
June 2, 2011 at 10:05 am
I was originally thinking you were asking about TDE, but now I suspect you're asking about column-level encryption, correct?
If so then Gail is spot-on (as usual).
PS If you are using...
June 2, 2011 at 9:51 am
IMHO it seems odd to call into a database to check if a file exists when you're in a .NET environment (SSIS) that is much better suited for doing file...
June 2, 2011 at 9:15 am
27M is not a lot IMO, not enough to create pressure in and of itself. What else is running on your server besides SQL Server? Do you use a lot...
June 2, 2011 at 8:30 am
Something like this inside your trigger should work:
IF ( APP_NAME() LIKE 'Microsoft SQL Server Management Studio%' )
BEGIN
--...
June 2, 2011 at 8:27 am
And did you catch the CLR processes in the act? SQL Server dynamically allocates and deallocates that memory as needed so it can fluctuate wildly. It may be a good...
June 2, 2011 at 6:39 am
You would have something to say about that...does xp_cmdshell know about your love affair with sp_makewebtask? I bet she'd be jealous 😛
June 1, 2011 at 9:39 pm
Viewing 15 posts - 6,271 through 6,285 (of 7,168 total)