Viewing 15 posts - 16 through 30 (of 270 total)
oh...well that might make a difference then! lol
Michael Weiss
September 22, 2003 at 11:59 pm
If it were me, I would take a look at changing the design. If you think about it, being a male has nothing to do with being Australian...any more than...
September 22, 2003 at 11:21 pm
What version of SQL Server are you running? Also, what is the latest service pack installed? Lastly, if you execute the last task in the package manually by right clicking...
September 17, 2003 at 8:54 am
I would get rid of the quotes around your column name aliases...the only thing that should be quoted to my knowledge is the comma being concatenated into the firstname/lastname field...and...
September 12, 2003 at 9:49 am
Did you try unchecking the chinese language selection and then doing the install?
Michael Weiss
September 10, 2003 at 2:43 pm
Hi Steve!
Hey, check out this link (watch for wrap as always!)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsqlmag01/html/DTS2000inAction.asp
There is a paragraph or two on using the Inner Globabl Variables and Outer Global Variables in an...
September 4, 2003 at 8:43 pm
I never have...much prefer to do my lookups via a sproc executed in an Execute SQL task. I do think DTS Lookups have too much overhead in them...but it would...
September 4, 2003 at 3:22 pm
In the workflow properties for your cube processing task, is the "Execute On Main Thread" option checked? Doese the task work fine when you execute it directly from within the...
September 2, 2003 at 8:59 am
Try searching at http://www.msdn.microsoft.com for "file system object"...also might try running the same search on Google. Also maybe try searching this site for 'binary file'. There is lots...
August 22, 2003 at 9:47 am
One way would certainly be to save them out as VB files and search the code in those files...
hth,
Michael
Michael Weiss
August 13, 2003 at 8:48 pm
Have you tried to create a linked server? I have never done this so I am not sure if you can select a different data source connection for the dimensions...
August 8, 2003 at 10:15 am
Take a look in SQL Server Books Online (BOL) and search for Data Types. As far as I know, Analysis Services can use any data type [that SQL Server uses]...
August 5, 2003 at 9:01 am
Have you checked the FoxPro documentation to see what character is used as a parameter marker and then try it with that character instead of a question mark? Just an...
August 4, 2003 at 3:47 pm
Hi Ignacio,
Are you running SP3 on SQL Server 2000? How about the OS? Win2k Server? What service pack are you running on the OS? Have you applied any other updates...
August 4, 2003 at 9:14 am
oops...let me correct that piece of code...it should be:
Dim objfso
Set objfso = CreateObject("Scripting.FileSystemObject")
If objfso.FileExists(("\\myserver\myfiles\myfile.txt")
) Then
objfso.copyfile "\\myserver\myfiles\myfile.txt", "\\myserver\myfiles\newfilename.txt"
'CopyFile method will leave the original file intact...if you want to delete it, uncomment...
July 30, 2003 at 9:25 am
Viewing 15 posts - 16 through 30 (of 270 total)