Viewing 15 posts - 7,126 through 7,140 (of 7,168 total)
If SQL 2005 or above you should look at using EXECUTE AS. You can create a stored proc that can create logins as needed as if a sysadmin was doing...
February 17, 2011 at 1:39 pm
What does your requirement say if the day passed is between the third Saturday of the month and the last day of the month?
Ooops, misread your comment "current day passed...
February 17, 2011 at 1:13 pm
See the section on Permissions in the BOL article for BULK INSERT:
February 17, 2011 at 11:06 am
Disclaimer: this is a workaround for a limitation in SSIS
When you output XML to an OLE DB Source component it shows as a byte array which is difficult (maybe impossible,...
February 17, 2011 at 10:56 am
Please post the DDL describing the schema in place when you run your script. As I mentioned I am not receiving any errors running your code with a basic version...
February 17, 2011 at 10:41 am
I don't know if Service Broker would be of any help here without knowing more about your situation. If after performing a DML operation on Table A you need to...
February 17, 2011 at 9:27 am
I created this test table so your script could run in my test DB:
CREATE TABLE dbo.MYTABLE (id INT) ;
After that your script executed without error in SSMS. I am using...
February 17, 2011 at 9:20 am
Do you mind posting your code? I am very curious to see how you solved this. I suspect that Jeff may want to have a look as well.
February 16, 2011 at 9:52 am
What kind of function? Table-valued (multi-statement or inline) or Scalar?
February 16, 2011 at 9:29 am
barakos,
I am guessing you have an Oracle background and are looking for something similar to the %ROW_TYPE functionality but it does not exist in SQL Server.
There is an open...
February 14, 2011 at 1:47 pm
This is a common request. In my opinion "in-process EXPORT" functionality is a feature that would be very useful.
See this similar post:
http://www.sqlservercentral.com/Forums/Topic1061652-392-1.aspx
Here are some workarounds in preference order:
1. SSIS /...
February 14, 2011 at 1:31 pm
Looks like homework...
Have a look at the DATE/TIME functions in Books Online.
February 14, 2011 at 1:09 pm
Generically what you want to do is tie the check-in event in TFS Source Control to execute a build routine within Team Build. The build routine can do pretty much...
February 11, 2011 at 4:06 pm
Vote for this connect item if you agree that we should have an in-process EXPORT command:
https://connect.microsoft.com/SQLServer/feedback/details/224026
February 10, 2011 at 3:00 pm
I think Prasad might be looking for a different way to write a file to disk from a T-SQL programming context without using bcp via xp_cmdshell. This is a commonly...
February 10, 2011 at 2:47 pm
Viewing 15 posts - 7,126 through 7,140 (of 7,168 total)