Viewing 15 posts - 31 through 45 (of 182 total)
Is each example beside #4 (two packages) showing a package along it entire voyage with all stops?
#1 shows one package with two stops and then its final destination?
March 6, 2006 at 2:48 pm
I would query sysobjects, syscolumns, sysforeignkeys, sysindexes and sysindexkeys to get that info. Build from this:
Select
l_so.name
,l_sc.name
,l_sik.indid
,l_sik.keyno
From dbo.sysobjects...
March 6, 2006 at 1:14 pm
The entry will conatin statistics for the index. Can you post an example of the data you are viewing in question? Are you looking at WU_% entries?
March 6, 2006 at 9:54 am
The derived table will create a list of customers that have transactions older than a year thus omitting the new customers within the year, but will still return transactions...
March 6, 2006 at 9:42 am
This will give you a 1 for errors and a 0 for success. Now I am assuming you are trying to log all this activity without using isql...
March 1, 2006 at 1:36 pm
Hold on the return val of 0 is coming from the sp_executesql.
March 1, 2006 at 1:12 pm
What version of MS SQL Server are running?
On MS SQL Server 2000 sp3a This will raise the same error and return a value of 1
March 1, 2006 at 1:05 pm
Convert the @StartTime, @EndTime, @DayTime to ticks and then test if the @DayTime >= @StartTime And <= @EndTime.
If you store shift hours convert them as they apply to that day.
Set...
December 2, 2005 at 2:24 pm
Lastley could you provide the update statement that fails!
November 16, 2005 at 9:32 am
How do you know the app is using SQL Authentication?
November 15, 2005 at 9:05 am
Select 'Exec sp_change_users_login ''Update_One'','''+su.name+''','''+su.name+''''
From master.dbo.syslogins sl
Inner Join dbo.sysusers su
On sl.name = su.name
Where su.uid > 2
November 15, 2005 at 7:26 am
Why wont sp_change_users_login work for you? What are your permissions on the server/database?
If you have 'sysadmin' role I recommend using 'auto fix'. If you are dbo in the database referenced...
November 15, 2005 at 7:13 am
Are you wantimg to do this from within a Stored Procedure?
November 15, 2005 at 7:04 am
Viewing 15 posts - 31 through 45 (of 182 total)