Viewing 15 posts - 136 through 150 (of 530 total)
What is actually your question? You would like to operate (execute and stuff) remotely by using only the command line?
Take a look at http://www.sysinternals.com/Utilities/PsExec.html by our old friends at SysInternals!
But...
August 25, 2006 at 4:39 am
Hello!
What is actually your question? Is it why the StartDate field is part of the PK?
What do you mean by a 'go between' table?
Regards,
Hanslindgren
August 25, 2006 at 4:36 am
No problem, most important is that you managed to get help here
And that you provided feedback that it actually did help. Too...
August 24, 2006 at 4:18 am
Beware that this might be dangerous if you only want to change the part after the @ sign and before the first .
The above could potentially change also the...
August 24, 2006 at 3:55 am
And why not take a look at the Webcast produced by the aforementioned columnist?
http://www.sqlservercentral.com/articles/articlelink.asp?articleid=2563
Which is actually featured in todays newsletter
August 23, 2006 at 9:07 am
Only way I know of is if someone actively reseeds it (like you did to correct it)...
August 23, 2006 at 9:02 am
If you are using the same data for test you will probably notice very little to no performance gain through the use of VARCHAR(50) instead of VARCHAR(8000). Due to the...
August 23, 2006 at 8:49 am
I feel like I must break in here and elaborate on what Colin probably meant and correct Chris missconception of data storage in SQL Server:
If the VARCHAR is not VARCHAR(MAX)...
August 23, 2006 at 8:31 am
That sounds like a job for SQL Server Reporting Service!
And yes, you can do exactly that.
Happy (ab)use of it!
Hanslindgren
August 22, 2006 at 4:40 am
Use a T-Log explorer tool, that is IF you use Full Recovery.
And maybe now should be the time to restrict permissions?
Hanslindgren
August 17, 2006 at 4:10 am
Well, the BEGIN TRAN and COMMIT TRAN in ADO.NET has to do additional round trips to the server.
Additionally, doing it in ADO unfortunately makes it too easy to keep your...
August 17, 2006 at 4:08 am
If you are filling your .XLS with the help of Import External Data, you can configure your 'External Data Range Properties' to refresh every X minutes, everytime the .XLS is...
August 17, 2006 at 4:04 am
Hello,
To replace empty values with NULL use the function NULLIF( myColumn , '' ).
Example:
CREATE TABLE #myTable ( myColumn VARCHAR(50) NULL )
INSERT INTO #myTable (myColumn) VALUES ('Test')
INSERT INTO #myTable (myColumn) VALUES...
August 2, 2006 at 10:03 am
Yes. DTS is overkill. You only want to execute a few simple T-SQL statements, you have no need of anything you cannot conveniently find in T-SQL.
This can be sceduled as...
July 26, 2006 at 8:37 am
Viewing 15 posts - 136 through 150 (of 530 total)