Viewing 15 posts - 451 through 465 (of 1,884 total)
It is just 17000 records of just one field CustomerID.
I am using everything that people mentioned above for different projects: Linked server with the text driver, OPENROWSET, CLR in 2005...
March 1, 2007 at 10:05 am
I can get data into both SQL Server 2005 and MS ACCESS.
For SQL Server 2005:
1. On SQL Server computer install the MySQL ODBC driver from:
ODBC and ADO.NET Driver Download page:
February 28, 2007 at 1:41 pm
I was able to use my NotesSQL-based Data Source within Excel using Pivot Tables that use Microsoft Query but was not able to use the same data source for Linked...
February 27, 2007 at 4:03 pm
Andy,
Nice article and very well written!
February 27, 2007 at 3:55 pm
Hi,
I downloaded NotesSQL too. I was able to create a Data Source. I also added the security in the Data Source by clicking Option button and Add User and then...
February 26, 2007 at 4:06 pm
Mohammed,
Did you see this post by Andrew Pfeiffer
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=346725#bm347145
He said that in the maint plans if you have Cleanup task, it resets "Delete...
February 26, 2007 at 10:04 am
Irene,
Just in case:
If your directory or folder name contains a space like in Program Files then you should take the path in double quotes like:
dir "c:\Program Files"
February 26, 2007 at 9:44 am
Irene,
Try This:
Create
Table #MyTable(MyDir varchar(100))
insert
into #MyTable
execute
master.dbo.xp_cmdshell 'dir C:\'
select
* from #MyTable
Drop
...
February 23, 2007 at 10:22 am
Your post proves that you selected a good title! Everyone just read the title, made note that it was released and did not have to open the topic itself 🙂
Thanks for the...
February 23, 2007 at 9:58 am
This message normally comes up when the integrated authentication is used the the remote computer can not authenticate your Windows credentials because of the domain trust (or the absence of...
February 23, 2007 at 9:40 am
At one of the first Microsoft presentations dedicated to XML many years ago I sort of tried to make them step back into the reality and asked about performance. There was...
February 23, 2007 at 8:52 am
I just tested the above links. It works!!!!
I copied the following from SQL 2000 installation to SQL 2005 installation:
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL
Files: scptxfr.exe, scriptin.exe, sqlresld.dll
Then created subfolder Resources\1033 and...
February 20, 2007 at 3:32 pm
Can you see the old changes at all in Securable?
Back to scripting:
This says:
http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=168161&SiteID=17
where did scptxfr go?
" I backported scptxfr.exe from a MSSQL 2000 install on another machine...
February 20, 2007 at 2:48 pm
Did somebody try to play with PIVOT and UNPIVOT in SQL Server 2005? You probably can UNPIVOT the original data and then PIVOT them differently.
February 20, 2007 at 2:46 pm
Viewing 15 posts - 451 through 465 (of 1,884 total)