Viewing 15 posts - 16 through 30 (of 42 total)
It seems like your userid does not have privileges to login to the sever.
make sure that callcentre\guest has admin privileges on the box
-Meghana
May 31, 2005 at 1:38 am
I am not sure if you can do that. When you restore from the back up file , it would ask to overwrite the existing DB if the db with...
May 13, 2005 at 7:14 am
It came down to 12 minutes for the query i took example of
Actually this code was written way back in year 98. I am actually asked to tune the...
April 28, 2005 at 7:40 am
Thanks your suggestions helped in optimizing many other queries
April 28, 2005 at 1:24 am
yes the wrkaccountingdocument has following non clustered indexes
Idx1 on columns (AccountingDocumentNbr, AccountingDocumentTypeCode, MSGLCompanyCode, FiscalYearNbr, PostingDate)
idx2 on columns (AccountingDocumentNbr, FiscalYearNbr, MSGLCompanyCode)
idx3 on columns (InterfaceReferenceKeyId, InterfaceReferenceCode, AccountingDocumentNbr, FiscalYearNbr, MSGLCompanyCode)
please find the...
April 26, 2005 at 6:51 am
If you dont want double apostrophe and want only a single apostrophe you can set the quoted_identifier off and get the required results
following is what you can do
SET QUOTED_IDENTIFIER...
April 21, 2005 at 12:34 am
Syed
Also try to write your error rows to an exception file so that you can analyse if the problem lies with your source file.
you can do this by doing...
April 20, 2005 at 5:15 am
Dinuj
If you want the view in the source to be created as a view in destination db , use the option
"copy objects and data between SQL servers" instead of...
April 20, 2005 at 1:32 am
Yes Dinuj, Using this option "Copy table(s) and View(s) from source database", the views in the source database get created as tables in the destination database.
Regards
Meghana
April 20, 2005 at 1:21 am
It seems as if you do not have permission to open the csv file. Is it on a different fileshare for which you do not have access to.
Are you scheduling...
April 20, 2005 at 12:35 am
Your question is not clear.
Do you match NPA, NXX from the Numbers table to some other table ?
Regards
Meghana
April 19, 2005 at 2:47 am
The output parameter would show ReturnValue (without @) because you have selected it that way in your SQL task.
I mean
Select @returnvalue AS ReturnValue
If the following is exactly what...
April 18, 2005 at 12:28 am
if it is for a single table you can use this
sp_spaceused <tablename>
DBCC SQLPERF(LOGSPACE)
GO
DBCC SQLPERF(Logspace) can be used to monitor the amount of space used and indicates when to back...
April 14, 2005 at 7:16 am
You Can do something like this using an activex script
Function Main()
Dim oPKG
Set oPKG = DTSGlobalVariables.Parent
Dim oFSO
Set oFSO = CreateObject("Scripting.FileSystemObject")
'vars for date calcs
dim dt, sdt
dim dtyr, dtm, dtd
dim dtlimit
'filename
dim filename
dt...
April 14, 2005 at 2:11 am
you can do something like this
where Description LIKE '% arco%' or Description LIKE '%arco %'
HTH
Meghana
April 13, 2005 at 4:04 am
Viewing 15 posts - 16 through 30 (of 42 total)