Viewing 15 posts - 106 through 120 (of 175 total)
The ? wildcard is if you know the exact number of characters.
In my working example I use Myfile.???????? where the extension is a YYYYMMDD date format.
I also use Retrieve file...
January 15, 2010 at 3:22 pm
Does it work if you specify a single file that you know exists without the wildcarding?
I have done this successfully with the ? wildcard.
January 15, 2010 at 12:55 pm
>>As far as replication goes, I have read all about it
It sounds like you know as much or more about it then me then. I wasn't sure if you had...
January 7, 2010 at 4:08 pm
You could explore replication http://msdn.microsoft.com/en-us/library/ms151198.aspx but this can be complicated depending on how data is accessed/updated. Your terminal server solution may well be the best one especially if...
January 7, 2010 at 1:25 pm
AndrewSQLDBA (1/5/2010)
I believe that you should NEVER use a cursor of any type. There is always a better way.Andrew SQLDBA
Hmmm...never is a strong word. For updating data I agree, never...
January 7, 2010 at 11:21 am
On further investigation I came across this link which recommends some changes to SSMS settings to avoid what they call "unintentional issues in production environments".
http://sqlserverpedia.com/wiki/SQL_Server_Troubleshooting_Tips_and_Tricks
See Query Execution Settings...
January 5, 2010 at 11:18 am
Data lock. EM use to lock the table resulting in calls from disgruntled users. I agree its preferrably to actually type your queries but occasionally I want to drag and...
January 5, 2010 at 9:33 am
Service broker looks pretty powerful but the learning curve also looks steep. You may want to consider a simpler setup. Have your trigger do something that is highly reliable, like...
December 22, 2009 at 4:48 pm
ya exactly .. does we need to create the transaction log's manually ? or they will be in system itself
The transaction log backups would already need to be in existence....
December 22, 2009 at 1:41 pm
SQL Profiler will report on current/ongoing database activity. It almost sounded from your post that you want to know about historical data insertion. In this case you would need...
December 21, 2009 at 1:48 pm
You can use the SET parameter with DTEXEC
http://msdn.microsoft.com/en-us/library/ms162810.aspx
xp_cmdshell will need to be enabled.
Create variables in your packages. The use expressions in your package so that your destination and...
December 21, 2009 at 10:40 am
declare @cmd varchar(255)
set @cmd = 'C:WinZip\WINZIP32.exe d:\testzip.zip'
exec master..xp_cmdshell @cmd
This is an example. I'm guessing this example actually unzips a file.
You will need to first use WINZIP32.exe to add password...
December 17, 2009 at 11:16 am
>>SA to change the drive letters of the Old Drives and rename the new drives as D: and E:
Probably will work but the rename is not necessary.
December 17, 2009 at 10:59 am
You can import folders/files into a table
Maybe this, haven't tried it: http://www.sqlusa.com/articles2005/launchcelebration/ or http://www.sqlservercentral.com/articles/SQLCLR/65656/
The method I have used is xp_cmdshell and dir. Search xp_cmdshell and dir...
December 17, 2009 at 10:50 am
>>I need to parse out some the information, like the timestamp field, into usable information (make it into a real timestamp that SQL can understand).
I would think you'd want an...
December 14, 2009 at 1:01 pm
Viewing 15 posts - 106 through 120 (of 175 total)