Viewing 15 posts - 2,176 through 2,190 (of 2,487 total)
If you don't need to import the ID from the spreadsheet then make sure you exclude that column in the transformations tab.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point...
September 15, 2003 at 5:49 pm
Using the text file connection, DTS will re-create the file each time the datapump runs. To append to an existing file you would need to output to a second file...
September 15, 2003 at 5:44 pm
How is your app connecting to the server? Are you sure you're connecting to the new server?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
September 15, 2003 at 5:36 pm
From the Server Explorer pane, add a dataconnection. Then expand the tree till you get Stored Procedures. Right-click on the Stroed Procedures folder and choose 'Add to Source Control'
Then you...
September 15, 2003 at 5:35 pm
Steve is right, reindexing a clustered index can require 120% of the space allocated to the index.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
September 15, 2003 at 5:09 pm
If you want to check the available space in the t-logs use,
DBCC SQLPERF(LOGSPACE)
This will tell you the size and the % used.
Other than that, I'd go with Allen's suggestion. Assess...
September 15, 2003 at 5:00 pm
Just use the CAST, or CONVERT, function to re-format the field when you display it.
eg: CAST(Field as decimal(18,2))
Make sure you put the double brackets on the end, I always forget...
September 15, 2003 at 4:57 pm
Ditto on the newsletter idea.
I'm betting Frank has his father, mother, brother, sister and wife all subscribed ![]()
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and...
September 15, 2003 at 1:23 am
Hmmm ... it'd have to be an Analysis Services default. Can you do some sort of display formula? Like only display the date if its > 1/1/1900.
Hope this helps
Phill Carter
--------------------
Colt...
September 14, 2003 at 11:26 pm
Is there any default specified for the field?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface ![]()
September 14, 2003 at 10:20 pm
Ok so I'm a stick in the mud ![]()
I just think that with our ever growing community (I see more and more users with single figure posts)...
September 14, 2003 at 9:10 pm
Just what I was looking for to drive my ASP status report.
One other tip for #7, I modified the SELECT statement to be like this,
SELECT TOP...
September 14, 2003 at 8:00 pm
Ok, now not meaning to rain on anyones parade, I know a majority of the posting is exceptionally helpful, but...
How can people be labelled SQL Server Guru's when a lot...
September 14, 2003 at 6:54 pm
What sort of connection are you using as the source for this statement? The "Error Source: Microsoft JET Database Engine" would indicate that it's not SQL Server.
Hope this helps
Phill Carter
--------------------
Colt...
September 14, 2003 at 6:23 pm
If you want to execute a DOS command in VBScript you need to create a Windows Shell object. Then you can execute any command you want.
Eg:
Dim WshShell, oExec
Set WshShell =...
September 14, 2003 at 6:14 pm
Viewing 15 posts - 2,176 through 2,190 (of 2,487 total)