Viewing 15 posts - 76 through 90 (of 97 total)
What happened to a simple query like bellow? You only need to set the number of rows per page and the number of page you want to retrieve. I...
January 6, 2009 at 1:58 pm
How about the feature with right click and generate the script? Has anybody used that? As it seems the script does about just right in creating all the objects involved...
October 14, 2008 at 2:32 pm
Thank you all for your posts!
I think that the easyest workaround for this problem would be indeed to explicitly specfy the owner at the creation of the table. I knew...
March 10, 2008 at 9:18 am
Cliff Knight (3/4/2008)
March 4, 2008 at 8:47 am
RIck Moudy (2/28/2008)
February 28, 2008 at 7:40 am
SQL server 2000 doesn't support the XML data type. It was introduced with SQL server 2005.
December 10, 2007 at 8:53 am
jacob sebastian (12/10/2007)
Manish Sinha (12/10/2007)
December 10, 2007 at 7:33 am
Scott Gammans (5/30/2007)
December 7, 2007 at 5:31 am
Sotiris Filippidis (10/10/2007)
October 10, 2007 at 6:21 am
To be honest I didn't understand this article. First of all the example doesn't cover the first condition "All records that contain the word "the" in the company name", but...
October 10, 2007 at 5:56 am
You can also use OPENDATASOURCE or OPENROWSET without having to create a linked server.
Ex from Books Online:
with OLE DB provider for MS SQL
SELECT a.*
FROM OPENROWSET('SQLOLEDB','seattle1';'sa';'MyPass',
'SELECT * FROM pubs.dbo.authors ORDER...
July 30, 2007 at 7:44 am
try this:
osql -S servername -d databasename -E -Q"select * from orders"
-E param tells OSQL to use the trusted connection (your windows account) to access the database so you don't have to...
December 2, 2006 at 10:44 am
You can put the DP task where you want depending on what you want but the "mission" of the Dynamic Properties task is to be able to change at the...
November 23, 2006 at 7:20 am
You don't need a second package.
I solved this kind of problem by creating in the working folder a sample/source/structure excel file (i.e. _sample_file.xls) that has the workbook created with the...
November 22, 2006 at 7:50 am
Contradiction:
Nothing comes without caveats! You cannot use Table Variables in the following situations:
select xxx into @table_variable
or
(here) insert into @table_variable select * from myTable
For example if you...
November 21, 2006 at 9:33 am
Viewing 15 posts - 76 through 90 (of 97 total)