Viewing 15 posts - 166 through 180 (of 185 total)
tsanta, sorry for any delay!! have a browse and replace the print statement with other syntax.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=114315#bm116592
Hop it points you in the right direction.
June 10, 2004 at 7:21 am
Try this. I would like to take credit for this but I can't. Its a handy little bit of script that I lifted from a forum some time ago. Hope...
June 7, 2004 at 2:44 am
Excel attempts to be clever by recognizing dates and automatically formatting it to what the computers regional settings are.
So you have a few options –
a. Change the users regional settings...
May 26, 2004 at 8:19 am
Proclarity is a pretty good tool for a reasonable cost.
May 26, 2004 at 6:59 am
Do you use Global Variables? if not it might be worth looking at BOL
May 19, 2004 at 6:56 am
I always force imported files to have the same name everytime.
May 19, 2004 at 6:52 am
/******************************************************************************************************
** Check to see if a file exists
******************************************************************************************************/
DECLARE @chkfile INT
DECLARE @exists BIT
EXEC @chkfile = sp_MSget_file_existence 'C:\boot.ini', @exists = @exists output
IF @exists = 1 ...
May 19, 2004 at 6:38 am
You may want to check the DST packages to see if any of them re/process any shared dimensions.
When you re/process a shared dimension it becomes locked, meaning any other...
April 16, 2004 at 3:35 am
try previous link http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=93756#bm93832
it may help.
March 31, 2004 at 1:17 am
What about sending the results to another XL file that has has code in that will continue the loading at the click of a button.
February 25, 2004 at 3:25 am
I've had the same problem previously. The following worked for me - open the excel file and delete all the rows below your data. Hope this helps.
February 11, 2004 at 1:38 am
I would have done it this way just to cut down on typing - select left(datename(month,getdate()),3) + right(datepart(year,getdate()),2) . Does anyone know which performs better? my execution plan...
February 5, 2004 at 1:33 am
Try this – Don’t manually create the spreadsheet, let SQL server do it. Create the spreadsheet in your package and in your data pump task ‘Destination’ select to create...
February 4, 2004 at 1:24 am
Proclarity all the way, apart from the excel spreadsheets and soon reporting services. We use excel for flat bulk reporting and Proclrity for analysis and viewing KPI's, looking into RS...
January 15, 2004 at 3:57 am
In excel
Create a spreadsheet called screwup.xls
In MMC
Create a SQL server connection
Create a spreadsheet connection (who’s filename is the screwup.xls file)
Create the Transform data task, in the source type “select 'user1'...
January 8, 2004 at 1:37 am
Viewing 15 posts - 166 through 180 (of 185 total)